description
stringclasses
8 values
dnl
stringlengths
160
358k
ses
stringclasses
7 values
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
CommandAndControlSJC.dnl use countRequestReceived with type int! use requestFromDataCenter with type Request! use dataReceived with type Operation! use operation1 with type Operation! use coordenadaAmazonia with type Coordinate! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A Operation has id, date, orbitId, name, instruction, and coordinateToBeMonitored! the range of Operation's id is Integer! the range of Operation's date is java.util.Calendar! the range of Operation's orbitId is Integer! the range of Operation's name is String! the range of Operation's instruction is Integer! the range of Operation's coordinateToBeMonitored is Coordinate! use operation with type Operation! A Image has name, extension, and content! the range of Image's name is String! the range of Image's extension is String! the range of Image's content is Binary! use image with type Image! A Request has coordinateToBeMonitored, date, and request! the range of Request's coordinateToBeMonitored is Coordinate! the range of Request's date is java.util.Calendar! the range of Request's request is String! use request with type Request! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A Coordinate has x and y! the range of Coordinate's x is Latitude! the range of Coordinate's y is Longitude! use coordinate with type Coordinate! A Binary has a value! the range of Binary's value is Integer! use binary with type Binary! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); operation = new Operation(new Integer(0), Calendar.getInstance(),new Integer(0),new String(),new Integer(0),new Coordinate(new Latitude(),new Longitude())); image = new Image(new String(),new String(),new Binary(new Integer(0))); request = new Request(new Coordinate(new Latitude(),new Longitude()), Calendar.getInstance(),new String()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); coordinate = new Coordinate(new Latitude(),new Longitude()); binary = new Binary(new Integer(0)); %>! accepts input on Request with type Request! generates output on Operation with type Operation! accepts input on Telemetry with type Image! generates output on Coordinate with type Coordinate! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive Request go to s3! hold in s3 for time 1! from s3 go to s4! //UNOBSERVABLE : Valuing hold in s4 for time 1! after s4 output Operation! from s4 go to s5! hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! from s6 go to s2! //UNOBSERVABLE : Repeat loop external event for s2 with Request <% countRequestReceived++; requestFromDataCenter = messageList.get(0).getData(); %>! output event for s4 <% output.add(outOperation, operation); %>! internal event for s1 <% requestFromDataCenter = null; %>! internal event for s3 <% coordenadaAmazonia = new Coordinate( new Latitude(new Double(-1)), new Longitude(new Double(-48))); operation1 = new Operation(new Integer(1),Calendar.getInstance(),new Integer(4),null,new Integer(1),coordenadaAmazonia); %>! internal event for s5 <% dataReceived = null; %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = false; public final String typeCons = "CommandAndControl"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countRequestReceived = " + Integer.toString(countRequestReceived) + ";"); countRequestReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
DataCenterCP.dnl use countCoordinateReceived with type int! use countTelemetryReceived with type int! use imgReceived with type Image! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! use collectedImages with type java.util.ArrayList<Image>! A Image has name, extension, and content! the range of Image's name is String! the range of Image's extension is String! the range of Image's content is Binary! use image with type Image! A Request has coordinateToBeMonitored, date, and request! the range of Request's coordinateToBeMonitored is Coordinate! the range of Request's date is java.util.Calendar! the range of Request's request is String! use request with type Request! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A Coordinate has x and y! the range of Coordinate's x is Latitude! the range of Coordinate's y is Longitude! use coordinate with type Coordinate! A Binary has a value! the range of Binary's value is Integer! use binary with type Binary! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); collectedImages = new java.util.ArrayList<Image>(); image = new Image(new String(),new String(),new Binary(new Integer(0))); request = new Request(new Coordinate(new Latitude(),new Longitude()), Calendar.getInstance(),new String()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); coordinate = new Coordinate(new Latitude(),new Longitude()); binary = new Binary(new Integer(0)); %>! accepts input on Telemetry with type Image! generates output on Request with type Request! accepts input on Coordinate with type Coordinate! generates output on Coordinate with type Coordinate! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive Coordinate go to s3! hold in s3 for time 1! after s3 output Request! from s3 go to s4! when in s2 and receive Telemetry go to s5! hold in s4 for time 1! from s4 go to s2! //UNOBSERVABLE : Repeat loop hold in s5 for time 1! from s5 go to s2! //UNOBSERVABLE : Repeat loop external event for s2 with Coordinate <% countCoordinateReceived++; coordinate = messageList.get(0).getData(); %>! output event for s3 <% output.add(outRequest, request); %>! external event for s2 with Telemetry <% countTelemetryReceived++; imgReceived = messageList.get(0).getData(); %>! internal event for s1 <% imgReceived = null; %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = false; public final String typeCons = "DataCenter"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinateReceived = " + Integer.toString(countCoordinateReceived) + ";"); countCoordinateReceived = 0; writer.write("countTelemetryReceived = " + Integer.toString(countTelemetryReceived) + ";"); countTelemetryReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
DRCspaceSoSArchitecture.dnl add library <% import com.ms4systems.devs.core.model.impl.CoupledModelImpl; import com.ms4systems.devs.core.model.AtomicModel; import com.ms4systems.devs.core.message.Coupling; import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; import java.util.Date; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.LinkedHashMap; import java.util.Random; %>! accepts input on Remove with type AtomicModelImpl! accepts input on ReorganizeArchitecture! accepts input on AddSatelliteAmazonia3! accepts input on AddGroundStation! accepts input on AddDataCenter! accepts input on AddCommandAndControl! accepts input on AddPCDMet! accepts input on AddPCDQagua! accepts input on AddPCDHidro! accepts input on AddPCDAgro! use toRemove with type AtomicModelImpl! use auxRecConst with type ArrayList<AtomicModelImpl>! use flagAddData with type boolean! use simulationTime with type long! use syncCount with type int! use dataCenters with type ArrayList<AtomicModelImpl>! use commandAndControls with type ArrayList<AtomicModelImpl>! use groundStations with type ArrayList<AtomicModelImpl>! use satelliteAmazonia3s with type ArrayList<AtomicModelImpl>! use mediatorDataCenterToC2s with type ArrayList<AtomicModelImpl>! use mediatorC2ToGrounds with type ArrayList<AtomicModelImpl>! use mediatorGroundToSatellites with type ArrayList<AtomicModelImpl>! use mediatorGroundToDataCenters with type ArrayList<AtomicModelImpl>! use pCDMets with type ArrayList<AtomicModelImpl>! use pCDQaguas with type ArrayList<AtomicModelImpl>! use pCDHidros with type ArrayList<AtomicModelImpl>! use pCDAgros with type ArrayList<AtomicModelImpl>! use mediatorPCDtoSatellites with type ArrayList<AtomicModelImpl>! add additional code <% public static ArrayList<AtomicModelImpl> originalConstituents; public static ArrayList<AtomicModelImpl> constituents; public static ArrayList<Connection> connections; private static int contRecDataCenter; private static int contRecCommandAndControl; private static int contRecGroundStation; private static int contRecSatelliteAmazonia3; private static int contRecMediatorDataCenterToC2; private static int contRecMediatorC2ToGround; private static int contRecMediatorGroundToSatellite; private static int contRecMediatorGroundToDataCenter; private static int contRecPCDMet; private static int contRecPCDQagua; private static int contRecPCDHidro; private static int contRecPCDAgro; private static int contRecMediatorPCDtoSatellite; %>! to start passivate in w8AddOrRemove! when in w8AddOrRemove and receive WriteData go to sendWriteData! when in w8AddOrRemove and receive Remove go to w8AddOrRemove! when in w8AddOrRemove and receive ReorganizeArchitecture go to w8AddOrRemove! when in w8AddOrRemove and receive AddSatelliteAmazonia3 go to w8AddOrRemove! when in w8AddOrRemove and receive AddGroundStation go to w8AddOrRemove! when in w8AddOrRemove and receive AddDataCenter go to w8AddOrRemove! when in w8AddOrRemove and receive AddCommandAndControl go to w8AddOrRemove! when in w8AddOrRemove and receive AddPCDMet go to w8AddOrRemove! when in w8AddOrRemove and receive AddPCDQagua go to w8AddOrRemove! when in w8AddOrRemove and receive AddPCDHidro go to w8AddOrRemove! when in w8AddOrRemove and receive AddPCDAgro go to w8AddOrRemove! hold in sendWriteData for time 1! after sendWriteData output WriteData! from sendWriteData go to sendContinue! hold in sendContinue for time 1! after sendContinue output Continue! from sendContinue go to w8AddOrRemove! initialize variables <% syncCount = 1; dataCenters = new ArrayList<AtomicModelImpl>(); commandAndControls = new ArrayList<AtomicModelImpl>(); groundStations = new ArrayList<AtomicModelImpl>(); satelliteAmazonia3s = new ArrayList<AtomicModelImpl>(); mediatorDataCenterToC2s = new ArrayList<AtomicModelImpl>(); mediatorC2ToGrounds = new ArrayList<AtomicModelImpl>(); mediatorGroundToSatellites = new ArrayList<AtomicModelImpl>(); mediatorGroundToDataCenters = new ArrayList<AtomicModelImpl>(); pCDMets = new ArrayList<AtomicModelImpl>(); pCDQaguas = new ArrayList<AtomicModelImpl>(); pCDHidros = new ArrayList<AtomicModelImpl>(); pCDAgros = new ArrayList<AtomicModelImpl>(); mediatorPCDtoSatellites = new ArrayList<AtomicModelImpl>(); flagAddData = true; constituents = new ArrayList<AtomicModelImpl>(); connections = new ArrayList<Connection>(); new File("Result/Result.txt").delete(); simulationTime = System.currentTimeMillis(); if(originalConstituents == null) originalConstituents = initializeConstituents(); %>! external event for w8AddOrRemove with ReorganizeArchitecture <% reorganizationOperator(); %>! external event for w8AddOrRemove with Remove <% toRemove = (AtomicModelImpl) messageList.get(0).getData(); deletionOperator(toRemove); %>! external event for w8AddOrRemove with AddSatelliteAmazonia3 <% additionOperator("satelliteAmazonia3"); %>! external event for w8AddOrRemove with AddGroundStation <% additionOperator("groundStation"); %>! external event for w8AddOrRemove with AddDataCenter <% additionOperator("dataCenter"); %>! external event for w8AddOrRemove with AddCommandAndControl <% additionOperator("commandAndControl"); %>! external event for w8AddOrRemove with AddPCDMet <% additionOperator("pCDMet"); %>! external event for w8AddOrRemove with AddPCDQagua <% additionOperator("pCDQagua"); %>! external event for w8AddOrRemove with AddPCDHidro <% additionOperator("pCDHidro"); %>! external event for w8AddOrRemove with AddPCDAgro <% additionOperator("pCDAgro"); %>! add additional code <% public void additionOperator(String constType) { connections.clear(); for(Coupling e : getParent().getCouplings()) { if(!e.getSource().getName().contains("StimuliGenerator") && !e.getDestination().getName().contains("DRC")) connections.add(new Connection((AtomicModelImpl) e.getSource(), e.getSourcePort(), (AtomicModelImpl)e.getDestination(), e.getDestinationPort())); } constituents = initializeConstituents(); if(constType.equalsIgnoreCase("satelliteAmazonia3")) { AtomicModelImpl toAdd = null; for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("SatelliteAmazonia3")) { try{ toAdd = e.getClass().newInstance(); break; }catch(Exception LastHope) {} } } addConstituentSatelliteAmazonia3(toAdd, true); syncModel(); return; } if(constType.equalsIgnoreCase("groundStation")) { AtomicModelImpl toAdd = null; for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("GroundStation")) { try{ toAdd = e.getClass().newInstance(); break; }catch(Exception LastHope) {} } } addConstituentGroundStation(toAdd, true); syncModel(); return; } if(constType.equalsIgnoreCase("dataCenter")) { AtomicModelImpl toAdd = null; for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("DataCenter")) { try{ toAdd = e.getClass().newInstance(); break; }catch(Exception LastHope) {} } } addConstituentDataCenter(toAdd, true); syncModel(); return; } if(constType.equalsIgnoreCase("commandAndControl")) { AtomicModelImpl toAdd = null; for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("CommandAndControl")) { try{ toAdd = e.getClass().newInstance(); break; }catch(Exception LastHope) {} } } addConstituentCommandAndControl(toAdd, true); syncModel(); return; } if(constType.equalsIgnoreCase("pCDMet")) { AtomicModelImpl toAdd = null; for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("PCDMet")) { try{ toAdd = e.getClass().newInstance(); break; }catch(Exception LastHope) {} } } addConstituentPCDMet(toAdd, true); syncModel(); return; } if(constType.equalsIgnoreCase("pCDQagua")) { AtomicModelImpl toAdd = null; for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("PCDQagua")) { try{ toAdd = e.getClass().newInstance(); break; }catch(Exception LastHope) {} } } addConstituentPCDQagua(toAdd, true); syncModel(); return; } if(constType.equalsIgnoreCase("pCDHidro")) { AtomicModelImpl toAdd = null; for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("PCDHidro")) { try{ toAdd = e.getClass().newInstance(); break; }catch(Exception LastHope) {} } } addConstituentPCDHidro(toAdd, true); syncModel(); return; } if(constType.equalsIgnoreCase("pCDAgro")) { AtomicModelImpl toAdd = null; for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("PCDAgro")) { try{ toAdd = e.getClass().newInstance(); break; }catch(Exception LastHope) {} } } addConstituentPCDAgro(toAdd, true); syncModel(); return; } } private void addConstituentSatelliteAmazonia3(AtomicModelImpl toAdd, boolean add) { CoupledModelImpl parent = (CoupledModelImpl)getParent(); if(add) { toAdd.setName("SatelliteAmazonia3Rec" + contRecSatelliteAmazonia3); parent.addChildModel(toAdd); StimuliGeneratorSatellite toAdd2 = new StimuliGeneratorSatellite("StimuliGeneratorSatelliteAmazonia3Rec"+contRecSatelliteAmazonia3); parent.addChildModel(toAdd2); for(Port<?> e : toAdd2.getOutputPorts()) { Port<?> aux = toAdd.getInputPort(e.getName().replace("out","in")); if(aux != null) { parent.addCoupling(e, aux); } } } if(constituents.size() > 0 ) { AtomicModelImpl aux = getToConnectModel(toAdd); if(aux != null) { recConnectionAdd(toAdd,aux); } } if(add) { constituents.add(toAdd); satelliteAmazonia3s.add(toAdd); parent.addCoupling(toAdd.getOutputPort("outRemove"),this.inRemove); contRecSatelliteAmazonia3++; } } private void addConstituentGroundStation(AtomicModelImpl toAdd, boolean add) { CoupledModelImpl parent = (CoupledModelImpl)getParent(); if(add) { toAdd.setName("GroundStationRec" + contRecGroundStation); parent.addChildModel(toAdd); } if(constituents.size() > 0 ) { AtomicModelImpl aux = getToConnectModel(toAdd); if(aux != null) { recConnectionAdd(toAdd,aux); } } if(add) { constituents.add(toAdd); groundStations.add(toAdd); parent.addCoupling(toAdd.getOutputPort("outRemove"),this.inRemove); contRecGroundStation++; } } private void addConstituentDataCenter(AtomicModelImpl toAdd, boolean add) { CoupledModelImpl parent = (CoupledModelImpl)getParent(); if(add) { toAdd.setName("DataCenterRec" + contRecDataCenter); parent.addChildModel(toAdd); StimuliGeneratorDataCenterCP toAdd2 = new StimuliGeneratorDataCenterCP("StimuliGeneratorDataCenterRec"+contRecDataCenter); parent.addChildModel(toAdd2); for(Port<?> e : toAdd2.getOutputPorts()) { Port<?> aux = toAdd.getInputPort(e.getName().replace("out","in")); if(aux != null) { parent.addCoupling(e, aux); } } } if(constituents.size() > 0 ) { AtomicModelImpl aux = getToConnectModel(toAdd); if(aux != null) { recConnectionAdd(toAdd,aux); } } if(add) { constituents.add(toAdd); dataCenters.add(toAdd); parent.addCoupling(toAdd.getOutputPort("outRemove"),this.inRemove); contRecDataCenter++; } } private void addConstituentCommandAndControl(AtomicModelImpl toAdd, boolean add) { CoupledModelImpl parent = (CoupledModelImpl)getParent(); if(add) { toAdd.setName("CommandAndControlRec" + contRecCommandAndControl); parent.addChildModel(toAdd); } if(constituents.size() > 0 ) { AtomicModelImpl aux = getToConnectModel(toAdd); if(aux != null) { recConnectionAdd(toAdd,aux); } } if(add) { constituents.add(toAdd); commandAndControls.add(toAdd); parent.addCoupling(toAdd.getOutputPort("outRemove"),this.inRemove); contRecCommandAndControl++; } } private void addConstituentPCDMet(AtomicModelImpl toAdd, boolean add) { CoupledModelImpl parent = (CoupledModelImpl)getParent(); if(add) { toAdd.setName("PCDMetRec" + contRecPCDMet); parent.addChildModel(toAdd); StimuliGeneratorPcd31858 toAdd2 = new StimuliGeneratorPcd31858("StimuliGeneratorPCDMetRec"+contRecPCDMet); parent.addChildModel(toAdd2); for(Port<?> e : toAdd2.getOutputPorts()) { Port<?> aux = toAdd.getInputPort(e.getName().replace("out","in")); if(aux != null) { parent.addCoupling(e, aux); } } } if(constituents.size() > 0 ) { AtomicModelImpl aux = getToConnectModel(toAdd); if(aux != null) { recConnectionAdd(toAdd,aux); } } if(add) { constituents.add(toAdd); pCDMets.add(toAdd); parent.addCoupling(toAdd.getOutputPort("outRemove"),this.inRemove); contRecPCDMet++; } } private void addConstituentPCDQagua(AtomicModelImpl toAdd, boolean add) { CoupledModelImpl parent = (CoupledModelImpl)getParent(); if(add) { toAdd.setName("PCDQaguaRec" + contRecPCDQagua); parent.addChildModel(toAdd); StimuliGeneratorPcd32484 toAdd2 = new StimuliGeneratorPcd32484("StimuliGeneratorPCDQaguaRec"+contRecPCDQagua); parent.addChildModel(toAdd2); for(Port<?> e : toAdd2.getOutputPorts()) { Port<?> aux = toAdd.getInputPort(e.getName().replace("out","in")); if(aux != null) { parent.addCoupling(e, aux); } } } if(constituents.size() > 0 ) { AtomicModelImpl aux = getToConnectModel(toAdd); if(aux != null) { recConnectionAdd(toAdd,aux); } } if(add) { constituents.add(toAdd); pCDQaguas.add(toAdd); parent.addCoupling(toAdd.getOutputPort("outRemove"),this.inRemove); contRecPCDQagua++; } } private void addConstituentPCDHidro(AtomicModelImpl toAdd, boolean add) { CoupledModelImpl parent = (CoupledModelImpl)getParent(); if(add) { toAdd.setName("PCDHidroRec" + contRecPCDHidro); parent.addChildModel(toAdd); StimuliGeneratorPcd31786 toAdd2 = new StimuliGeneratorPcd31786("StimuliGeneratorPCDHidroRec"+contRecPCDHidro); parent.addChildModel(toAdd2); for(Port<?> e : toAdd2.getOutputPorts()) { Port<?> aux = toAdd.getInputPort(e.getName().replace("out","in")); if(aux != null) { parent.addCoupling(e, aux); } } } if(constituents.size() > 0 ) { AtomicModelImpl aux = getToConnectModel(toAdd); if(aux != null) { recConnectionAdd(toAdd,aux); } } if(add) { constituents.add(toAdd); pCDHidros.add(toAdd); parent.addCoupling(toAdd.getOutputPort("outRemove"),this.inRemove); contRecPCDHidro++; } } private void addConstituentPCDAgro(AtomicModelImpl toAdd, boolean add) { CoupledModelImpl parent = (CoupledModelImpl)getParent(); if(add) { toAdd.setName("PCDAgroRec" + contRecPCDAgro); parent.addChildModel(toAdd); StimuliGeneratorPcd31801 toAdd2 = new StimuliGeneratorPcd31801("StimuliGeneratorPCDAgroRec"+contRecPCDAgro); parent.addChildModel(toAdd2); for(Port<?> e : toAdd2.getOutputPorts()) { Port<?> aux = toAdd.getInputPort(e.getName().replace("out","in")); if(aux != null) { parent.addCoupling(e, aux); } } } if(constituents.size() > 0 ) { AtomicModelImpl aux = getToConnectModel(toAdd); if(aux != null) { recConnectionAdd(toAdd,aux); } } if(add) { constituents.add(toAdd); pCDAgros.add(toAdd); parent.addCoupling(toAdd.getOutputPort("outRemove"),this.inRemove); contRecPCDAgro++; } } %>! add additional code <% public void deletionOperator(AtomicModel toRemove) { connections.clear(); for(Coupling e : getParent().getCouplings()) { if(!e.getSource().getName().contains("StimuliGenerator") && !e.getDestination().getName().contains("DRC")) connections.add(new Connection((AtomicModelImpl) e.getSource(), e.getSourcePort(), (AtomicModelImpl)e.getDestination(), e.getDestinationPort())); } constituents = initializeConstituents(); this.toRemove = (AtomicModelImpl) toRemove; removeConstituent((AtomicModelImpl) toRemove); if(toRemove instanceof Mediator4) mediatorGroundToDataCenters.remove(toRemove); if(toRemove instanceof Mediator3) mediatorGroundToSatellites.remove(toRemove); if(toRemove instanceof Pcd31819) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31020) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd30960) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31132) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31817) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31814) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31812) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31810) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31811) pCDMets.remove(toRemove); if(toRemove instanceof MediatorPcd222) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd223) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd220) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd221) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31829) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31709) pCDMets.remove(toRemove); if(toRemove instanceof CommandAndControlSJC) commandAndControls.remove(toRemove); if(toRemove instanceof Pcd31820) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31025) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31023) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31021) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31827) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31828) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31826) pCDMets.remove(toRemove); if(toRemove instanceof Mediator2) mediatorC2ToGrounds.remove(toRemove); if(toRemove instanceof Mediator1) mediatorDataCenterToC2s.remove(toRemove); if(toRemove instanceof Pcd31824) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31821) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31029) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31822) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30975) pCDAgros.remove(toRemove); if(toRemove instanceof MediatorPcd10) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd214) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd12) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd11) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd219) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd217) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd218) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd215) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd216) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31830) pCDMets.remove(toRemove); if(toRemove instanceof Pcd32484) pCDQaguas.remove(toRemove); if(toRemove instanceof Pcd31839) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31836) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30869) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31837) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31834) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31835) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30873) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31841) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31842) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30871) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30870) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31849) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30879) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31847) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31848) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31845) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31844) pCDMets.remove(toRemove); if(toRemove instanceof MediatorPcd32) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd158) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd31) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd159) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd34) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd156) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd33) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd157) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd154) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd155) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd30) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd152) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd153) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31852) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31853) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30885) pCDAgros.remove(toRemove); if(toRemove instanceof Pcd30882) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31851) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30881) pCDMets.remove(toRemove); if(toRemove instanceof MediatorPcd29) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd150) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd28) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd151) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31858) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31856) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30888) pCDAgros.remove(toRemove); if(toRemove instanceof MediatorPcd25) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd24) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31854) pCDMets.remove(toRemove); if(toRemove instanceof MediatorPcd27) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd30887) pCDAgros.remove(toRemove); if(toRemove instanceof MediatorPcd26) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd21) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd147) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd20) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd148) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd23) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd145) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd22) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd146) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd143) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd144) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd141) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd142) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31074) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31075) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31071) pCDHidros.remove(toRemove); if(toRemove instanceof MediatorPcd149) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd30890) pCDAgros.remove(toRemove); if(toRemove instanceof MediatorPcd18) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd17) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd140) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd19) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31746) pCDAgros.remove(toRemove); if(toRemove instanceof MediatorPcd14) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd13) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31744) pCDAgros.remove(toRemove); if(toRemove instanceof MediatorPcd16) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31745) pCDAgros.remove(toRemove); if(toRemove instanceof MediatorPcd15) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd54) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd136) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd53) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd137) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd56) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd134) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd55) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd135) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd50) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd52) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd51) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31085) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31086) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31081) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31082) pCDHidros.remove(toRemove); if(toRemove instanceof MediatorPcd138) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd139) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31078) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31079) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31077) pCDHidros.remove(toRemove); if(toRemove instanceof Satellite) satelliteAmazonia3s.remove(toRemove); if(toRemove instanceof MediatorPcd47) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd46) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd49) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd48) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd43) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd42) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd45) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd44) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd41) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd40) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31096) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31097) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31094) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31095) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31092) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31093) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31090) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31091) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31764) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31089) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31088) pCDHidros.remove(toRemove); if(toRemove instanceof MediatorPcd39) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd36) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd35) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd38) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd37) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd8) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof DataCenterCP) dataCenters.remove(toRemove); if(toRemove instanceof MediatorPcd9) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd6) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd7) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd1) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd4) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd5) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd2) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd3) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31098) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31770) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31099) pCDHidros.remove(toRemove); if(toRemove instanceof MediatorPcd60) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd31786) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31784) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31785) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31782) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31783) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31780) pCDHidros.remove(toRemove); if(toRemove instanceof MediatorPcd58) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd57) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd59) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd176) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd174) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd175) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd172) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd173) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd30901) pCDHidros.remove(toRemove); if(toRemove instanceof MediatorPcd170) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd171) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd30900) pCDHidros.remove(toRemove); if(toRemove instanceof MediatorPcd169) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd167) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd168) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd165) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd166) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd163) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd164) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd32534) pCDQaguas.remove(toRemove); if(toRemove instanceof MediatorPcd161) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd162) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof MediatorPcd160) mediatorPCDtoSatellites.remove(toRemove); if(toRemove instanceof Pcd32539) pCDQaguas.remove(toRemove); if(toRemove instanceof Pcd32537) pCDQaguas.remove(toRemove); if(toRemove instanceof Pcd32543) pCDQaguas.remove(toRemove); if(toRemove instanceof Pcd30800) pCDAgros.remove(toRemove); if(toRemove instanceof GroundStation) groundStations.remove(toRemove); if(toRemove instanceof Pcd31102) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31100) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31101) pCDHidros.remove(toRemove); if(toRemove instanceof Pcd31115) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31116) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31113) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31114) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31111) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31112) pCDMets.remove(toRemove); if(toRemove instanceof Pcd30948) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31119) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31117) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31118) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31809) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31807) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31808) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31006) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31000) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31805) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31804) pCDMets.remove(toRemove); if(toRemove instanceof Pcd31801) pCDAgros.remove(toRemove); AtomicModel sg = null; for(AtomicModel e : getParent().getChildren()) { if(e.getName().equals("StimuliGenerator" + toRemove.getName())) { sg = e; break; } } if(sg != null) { getParent().removeChildModel(sg); } syncModel(); } %>! add additional code <% public void reorganizationOperator() { connections.clear(); for(Coupling e : getParent().getCouplings()) { if(!e.getSource().getName().contains("StimuliGenerator") && !e.getDestination().getName().contains("DRC")) connections.add(new Connection((AtomicModelImpl) e.getSource(), e.getSourcePort(), (AtomicModelImpl)e.getDestination(), e.getDestinationPort())); } constituents = initializeConstituents(); if(flagAddData) { constituents = initializeConstituents(); if(originalConstituents == null) { originalConstituents = initializeConstituents(); } connections = initializeConnections(); flagAddData = false; } removeMediators(); ArrayList<AtomicModelImpl> aux = new ArrayList<AtomicModelImpl>(); Random rand = new Random(); connections.clear(); int s; aux.clear(); for(AtomicModelImpl e : satelliteAmazonia3s) if(!aux.contains(e)) aux.add(e); while(aux.size() > 0) { int j = rand.nextInt(aux.size()); addConstituentSatelliteAmazonia3(aux.get(j), false); aux.remove(aux.get(j)); } aux.clear(); for(AtomicModelImpl e : groundStations) if(!aux.contains(e)) aux.add(e); while(aux.size() > 0) { int j = rand.nextInt(aux.size()); addConstituentGroundStation(aux.get(j), false); aux.remove(aux.get(j)); } aux.clear(); for(AtomicModelImpl e : dataCenters) if(!aux.contains(e)) aux.add(e); while(aux.size() > 0) { int j = rand.nextInt(aux.size()); addConstituentDataCenter(aux.get(j), false); aux.remove(aux.get(j)); } aux.clear(); for(AtomicModelImpl e : commandAndControls) if(!aux.contains(e)) aux.add(e); while(aux.size() > 0) { int j = rand.nextInt(aux.size()); addConstituentCommandAndControl(aux.get(j), false); aux.remove(aux.get(j)); } aux.clear(); for(AtomicModelImpl e : pCDMets) if(!aux.contains(e)) aux.add(e); while(aux.size() > 0) { int j = rand.nextInt(aux.size()); addConstituentPCDMet(aux.get(j), false); aux.remove(aux.get(j)); } aux.clear(); for(AtomicModelImpl e : pCDQaguas) if(!aux.contains(e)) aux.add(e); while(aux.size() > 0) { int j = rand.nextInt(aux.size()); addConstituentPCDQagua(aux.get(j), false); aux.remove(aux.get(j)); } aux.clear(); for(AtomicModelImpl e : pCDHidros) if(!aux.contains(e)) aux.add(e); while(aux.size() > 0) { int j = rand.nextInt(aux.size()); addConstituentPCDHidro(aux.get(j), false); aux.remove(aux.get(j)); } aux.clear(); for(AtomicModelImpl e : pCDAgros) if(!aux.contains(e)) aux.add(e); while(aux.size() > 0) { int j = rand.nextInt(aux.size()); addConstituentPCDAgro(aux.get(j), false); aux.remove(aux.get(j)); } syncModel(); } %>! add additional code <% private void removeMediators() { ArrayList<AtomicModelImpl> aux = new ArrayList<AtomicModelImpl>(); CoupledModelImpl parent = (CoupledModelImpl) getParent(); AtomicModelImpl a; for (AtomicModelImpl e : constituents) { if (e instanceof AtomicModelImpl) { a = (AtomicModelImpl) e; if (getIsMediator(a)) { aux.add(a); } } } for (AtomicModelImpl e : aux) { constituents.remove(e); parent.removeChildModel(e); } mediatorPCDtoSatellites.clear(); mediatorGroundToDataCenters.clear(); mediatorGroundToSatellites.clear(); mediatorDataCenterToC2s.clear(); mediatorC2ToGrounds.clear(); } %>! add additional code <% private void removeConstituent(AtomicModelImpl a) { CoupledModelImpl parent = (CoupledModelImpl) getParent(); ArrayList<Connection> toRemoveCon = new ArrayList<Connection>(); ArrayList<Connection> aux1 = new ArrayList<Connection>(),aux2 = new ArrayList<Connection>(); auxRecConst = new ArrayList<AtomicModelImpl>(); ArrayList<AtomicModelImpl> removed = new ArrayList<AtomicModelImpl>(); for(Connection e : connections) { if(e.outClass.equals(a) || e.inClass.equals(a)) { toRemoveCon.add(e); } } for(Connection e : toRemoveCon) { if(getIsMediator(e.outClass) && !removed.contains(e.outClass)) { aux1.addAll(removeMediator(e.outClass)); removed.add(e.outClass); } else if(getIsMediator(e.inClass) && !removed.contains(e.inClass)) { aux2.addAll(removeMediator(e.inClass)); removed.add(e.inClass); } } if(aux1 != null) toRemoveCon.addAll(aux1); if(aux2 != null) toRemoveCon.addAll(aux2); if(auxRecConst.size() > 1) { recConnectionAdd(auxRecConst.get(0),auxRecConst.get(1)); } for(Connection e : toRemoveCon) { connections.remove(e); } constituents.remove(a); parent.removeChildModel(a); } %>! add additional code <% private ArrayList<Connection> removeMediator(AtomicModelImpl a) { CoupledModelImpl parent = (CoupledModelImpl) getParent(); ArrayList<Connection> toRemoveCon = new ArrayList<Connection>(); for (Connection e : connections) { if (e.outClass.equals(a) || e.inClass.equals(a)) { toRemoveCon.add(e); } } for (Connection e : toRemoveCon) { if(!getIsMediator(e.inClass)&&!e.inClass.equals(toRemove)&&!auxRecConst.contains(e.inClass)) { auxRecConst.add(e.inClass); } if(!getIsMediator(e.outClass)&&!e.outClass.equals(toRemove)&&!auxRecConst.contains(e.outClass)) { auxRecConst.add(e.outClass); } } constituents.remove(a); parent.removeChildModel(a); return toRemoveCon; } %>! add additional code <% private void recConnectionAdd(AtomicModelImpl a1, AtomicModelImpl a2) { AtomicModelImpl m = getCompatibleMediator(a1,a2); CoupledModelImpl parent = (CoupledModelImpl)getParent(); holdInInitialState(a1); holdInInitialState(a2); if(getTypeCons(a1).equals("DataCenter")&&getTypeCons(a2).equals("GroundStation")) { parent.addCoupling(m.getOutputPort("outTelemetry"),a1.getInputPort("inTelemetry")); connections.add(new Connection(m, m.getOutputPort("outTelemetry"), a1, a1.getInputPort("inTelemetry"))); parent.addCoupling(a2.getOutputPort("outTelemetry"),m.getInputPort("inTelemetry")); connections.add(new Connection(a2,a2.getOutputPort("outTelemetry"),m,m.getInputPort("inTelemetry"))); } else if(getTypeCons(a1).equals("DataCenter")&&getTypeCons(a2).equals("CommandAndControl")) { parent.addCoupling(a1.getOutputPort("outRequest"), m.getInputPort("inRequest")); connections.add(new Connection(a1, a1.getOutputPort("outRequest"), m, m.getInputPort("inRequest"))); parent.addCoupling(m.getOutputPort("outRequest"),a2.getInputPort("inRequest")); connections.add(new Connection(m,m.getOutputPort("outRequest"),a2,a2.getInputPort("inRequest"))); } else if(getTypeCons(a1).equals("CommandAndControl")&&getTypeCons(a2).equals("DataCenter")) { parent.addCoupling(m.getOutputPort("outRequest"),a1.getInputPort("inRequest")); connections.add(new Connection(m, m.getOutputPort("outRequest"), a1, a1.getInputPort("inRequest"))); parent.addCoupling(a2.getOutputPort("outRequest"),m.getInputPort("inRequest")); connections.add(new Connection(a2,a2.getOutputPort("outRequest"),m,m.getInputPort("inRequest"))); } else if(getTypeCons(a1).equals("CommandAndControl")&&getTypeCons(a2).equals("GroundStation")) { parent.addCoupling(a1.getOutputPort("outOperation"), m.getInputPort("inOperation")); connections.add(new Connection(a1, a1.getOutputPort("outOperation"), m, m.getInputPort("inOperation"))); parent.addCoupling(m.getOutputPort("outOperation"),a2.getInputPort("inOperation")); connections.add(new Connection(m,m.getOutputPort("outOperation"),a2,a2.getInputPort("inOperation"))); } else if(getTypeCons(a1).equals("GroundStation")&&getTypeCons(a2).equals("DataCenter")) { parent.addCoupling(a1.getOutputPort("outTelemetry"), m.getInputPort("inTelemetry")); connections.add(new Connection(a1, a1.getOutputPort("outTelemetry"), m, m.getInputPort("inTelemetry"))); parent.addCoupling(m.getOutputPort("outTelemetry"),a2.getInputPort("inTelemetry")); connections.add(new Connection(m,m.getOutputPort("outTelemetry"),a2,a2.getInputPort("inTelemetry"))); } else if(getTypeCons(a1).equals("GroundStation")&&getTypeCons(a2).equals("CommandAndControl")) { parent.addCoupling(m.getOutputPort("outOperation"),a1.getInputPort("inOperation")); connections.add(new Connection(m, m.getOutputPort("outOperation"), a1, a1.getInputPort("inOperation"))); parent.addCoupling(a2.getOutputPort("outOperation"),m.getInputPort("inOperation")); connections.add(new Connection(a2,a2.getOutputPort("outOperation"),m,m.getInputPort("inOperation"))); } else if(getTypeCons(a1).equals("GroundStation")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { parent.addCoupling(a1.getOutputPort("outTelecommand"), m.getInputPort("inTelecommand")); connections.add(new Connection(a1, a1.getOutputPort("outTelecommand"), m, m.getInputPort("inTelecommand"))); parent.addCoupling(m.getOutputPort("outEstablishConnectionGS"),a1.getInputPort("inEstablishConnectionGS")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnectionGS"), a1, a1.getInputPort("inEstablishConnectionGS"))); parent.addCoupling(m.getOutputPort("outTelemetry"),a1.getInputPort("inTelemetry")); connections.add(new Connection(m, m.getOutputPort("outTelemetry"), a1, a1.getInputPort("inTelemetry"))); parent.addCoupling(a2.getOutputPort("outTelemetry"),m.getInputPort("inTelemetry")); connections.add(new Connection(a2,a2.getOutputPort("outTelemetry"),m,m.getInputPort("inTelemetry"))); parent.addCoupling(m.getOutputPort("outTelecommand"),a2.getInputPort("inTelecommand")); connections.add(new Connection(m,m.getOutputPort("outTelecommand"),a2,a2.getInputPort("inTelecommand"))); parent.addCoupling(m.getOutputPort("outEstablishConnectionGS"),a2.getInputPort("inEstablishConnectionGS")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnectionGS"),a2,a2.getInputPort("inEstablishConnectionGS"))); } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDMet")) { parent.addCoupling(a1.getOutputPort("outCoordinateSatellite"), m.getInputPort("inCoordinateSatellite")); connections.add(new Connection(a1, a1.getOutputPort("outCoordinateSatellite"), m, m.getInputPort("inCoordinateSatellite"))); parent.addCoupling(m.getOutputPort("outMetData"),a1.getInputPort("inMetData")); connections.add(new Connection(m, m.getOutputPort("outMetData"), a1, a1.getInputPort("inMetData"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a1.getInputPort("inEstablishConnection")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnection"), a1, a1.getInputPort("inEstablishConnection"))); parent.addCoupling(a2.getOutputPort("outMetData"),m.getInputPort("inMetData")); connections.add(new Connection(a2,a2.getOutputPort("outMetData"),m,m.getInputPort("inMetData"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a2.getInputPort("inEstablishConnection")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnection"),a2,a2.getInputPort("inEstablishConnection"))); parent.addCoupling(a2.getOutputPort("outCoordinatePCD"),m.getInputPort("inCoordinatePCD")); connections.add(new Connection(a2,a2.getOutputPort("outCoordinatePCD"),m,m.getInputPort("inCoordinatePCD"))); } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDQagua")) { parent.addCoupling(a1.getOutputPort("outCoordinateSatellite"), m.getInputPort("inCoordinateSatellite")); connections.add(new Connection(a1, a1.getOutputPort("outCoordinateSatellite"), m, m.getInputPort("inCoordinateSatellite"))); parent.addCoupling(m.getOutputPort("outQaguaData"),a1.getInputPort("inQaguaData")); connections.add(new Connection(m, m.getOutputPort("outQaguaData"), a1, a1.getInputPort("inQaguaData"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a1.getInputPort("inEstablishConnection")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnection"), a1, a1.getInputPort("inEstablishConnection"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a2.getInputPort("inEstablishConnection")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnection"),a2,a2.getInputPort("inEstablishConnection"))); parent.addCoupling(a2.getOutputPort("outCoordinatePCD"),m.getInputPort("inCoordinatePCD")); connections.add(new Connection(a2,a2.getOutputPort("outCoordinatePCD"),m,m.getInputPort("inCoordinatePCD"))); parent.addCoupling(a2.getOutputPort("outQaguaData"),m.getInputPort("inQaguaData")); connections.add(new Connection(a2,a2.getOutputPort("outQaguaData"),m,m.getInputPort("inQaguaData"))); } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDHidro")) { parent.addCoupling(m.getOutputPort("outHidroData"),a1.getInputPort("inHidroData")); connections.add(new Connection(m, m.getOutputPort("outHidroData"), a1, a1.getInputPort("inHidroData"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a1.getInputPort("inEstablishConnection")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnection"), a1, a1.getInputPort("inEstablishConnection"))); parent.addCoupling(a1.getOutputPort("outCoordinateSatellite"), m.getInputPort("inCoordinateSatellite")); connections.add(new Connection(a1, a1.getOutputPort("outCoordinateSatellite"), m, m.getInputPort("inCoordinateSatellite"))); parent.addCoupling(a2.getOutputPort("outHidroData"),m.getInputPort("inHidroData")); connections.add(new Connection(a2,a2.getOutputPort("outHidroData"),m,m.getInputPort("inHidroData"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a2.getInputPort("inEstablishConnection")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnection"),a2,a2.getInputPort("inEstablishConnection"))); parent.addCoupling(a2.getOutputPort("outCoordinatePCD"),m.getInputPort("inCoordinatePCD")); connections.add(new Connection(a2,a2.getOutputPort("outCoordinatePCD"),m,m.getInputPort("inCoordinatePCD"))); } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDAgro")) { parent.addCoupling(m.getOutputPort("outEstablishConnection"),a1.getInputPort("inEstablishConnection")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnection"), a1, a1.getInputPort("inEstablishConnection"))); parent.addCoupling(m.getOutputPort("outAgroData"),a1.getInputPort("inAgroData")); connections.add(new Connection(m, m.getOutputPort("outAgroData"), a1, a1.getInputPort("inAgroData"))); parent.addCoupling(a1.getOutputPort("outCoordinateSatellite"), m.getInputPort("inCoordinateSatellite")); connections.add(new Connection(a1, a1.getOutputPort("outCoordinateSatellite"), m, m.getInputPort("inCoordinateSatellite"))); parent.addCoupling(a2.getOutputPort("outAgroData"),m.getInputPort("inAgroData")); connections.add(new Connection(a2,a2.getOutputPort("outAgroData"),m,m.getInputPort("inAgroData"))); parent.addCoupling(a2.getOutputPort("outCoordinatePCD"),m.getInputPort("inCoordinatePCD")); connections.add(new Connection(a2,a2.getOutputPort("outCoordinatePCD"),m,m.getInputPort("inCoordinatePCD"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a2.getInputPort("inEstablishConnection")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnection"),a2,a2.getInputPort("inEstablishConnection"))); } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("GroundStation")) { parent.addCoupling(m.getOutputPort("outTelecommand"),a1.getInputPort("inTelecommand")); connections.add(new Connection(m, m.getOutputPort("outTelecommand"), a1, a1.getInputPort("inTelecommand"))); parent.addCoupling(a1.getOutputPort("outTelemetry"), m.getInputPort("inTelemetry")); connections.add(new Connection(a1, a1.getOutputPort("outTelemetry"), m, m.getInputPort("inTelemetry"))); parent.addCoupling(m.getOutputPort("outEstablishConnectionGS"),a1.getInputPort("inEstablishConnectionGS")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnectionGS"), a1, a1.getInputPort("inEstablishConnectionGS"))); parent.addCoupling(m.getOutputPort("outTelemetry"),a2.getInputPort("inTelemetry")); connections.add(new Connection(m,m.getOutputPort("outTelemetry"),a2,a2.getInputPort("inTelemetry"))); parent.addCoupling(m.getOutputPort("outEstablishConnectionGS"),a2.getInputPort("inEstablishConnectionGS")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnectionGS"),a2,a2.getInputPort("inEstablishConnectionGS"))); parent.addCoupling(a2.getOutputPort("outTelecommand"),m.getInputPort("inTelecommand")); connections.add(new Connection(a2,a2.getOutputPort("outTelecommand"),m,m.getInputPort("inTelecommand"))); } else if(getTypeCons(a1).equals("PCDMet")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { parent.addCoupling(a1.getOutputPort("outCoordinatePCD"), m.getInputPort("inCoordinatePCD")); connections.add(new Connection(a1, a1.getOutputPort("outCoordinatePCD"), m, m.getInputPort("inCoordinatePCD"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a1.getInputPort("inEstablishConnection")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnection"), a1, a1.getInputPort("inEstablishConnection"))); parent.addCoupling(a1.getOutputPort("outMetData"), m.getInputPort("inMetData")); connections.add(new Connection(a1, a1.getOutputPort("outMetData"), m, m.getInputPort("inMetData"))); parent.addCoupling(a2.getOutputPort("outCoordinateSatellite"),m.getInputPort("inCoordinateSatellite")); connections.add(new Connection(a2,a2.getOutputPort("outCoordinateSatellite"),m,m.getInputPort("inCoordinateSatellite"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a2.getInputPort("inEstablishConnection")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnection"),a2,a2.getInputPort("inEstablishConnection"))); parent.addCoupling(m.getOutputPort("outMetData"),a2.getInputPort("inMetData")); connections.add(new Connection(m,m.getOutputPort("outMetData"),a2,a2.getInputPort("inMetData"))); } else if(getTypeCons(a1).equals("PCDQagua")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { parent.addCoupling(m.getOutputPort("outEstablishConnection"),a1.getInputPort("inEstablishConnection")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnection"), a1, a1.getInputPort("inEstablishConnection"))); parent.addCoupling(a1.getOutputPort("outQaguaData"), m.getInputPort("inQaguaData")); connections.add(new Connection(a1, a1.getOutputPort("outQaguaData"), m, m.getInputPort("inQaguaData"))); parent.addCoupling(a1.getOutputPort("outCoordinatePCD"), m.getInputPort("inCoordinatePCD")); connections.add(new Connection(a1, a1.getOutputPort("outCoordinatePCD"), m, m.getInputPort("inCoordinatePCD"))); parent.addCoupling(a2.getOutputPort("outCoordinateSatellite"),m.getInputPort("inCoordinateSatellite")); connections.add(new Connection(a2,a2.getOutputPort("outCoordinateSatellite"),m,m.getInputPort("inCoordinateSatellite"))); parent.addCoupling(m.getOutputPort("outQaguaData"),a2.getInputPort("inQaguaData")); connections.add(new Connection(m,m.getOutputPort("outQaguaData"),a2,a2.getInputPort("inQaguaData"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a2.getInputPort("inEstablishConnection")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnection"),a2,a2.getInputPort("inEstablishConnection"))); } else if(getTypeCons(a1).equals("PCDHidro")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { parent.addCoupling(m.getOutputPort("outEstablishConnection"),a1.getInputPort("inEstablishConnection")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnection"), a1, a1.getInputPort("inEstablishConnection"))); parent.addCoupling(a1.getOutputPort("outCoordinatePCD"), m.getInputPort("inCoordinatePCD")); connections.add(new Connection(a1, a1.getOutputPort("outCoordinatePCD"), m, m.getInputPort("inCoordinatePCD"))); parent.addCoupling(a1.getOutputPort("outHidroData"), m.getInputPort("inHidroData")); connections.add(new Connection(a1, a1.getOutputPort("outHidroData"), m, m.getInputPort("inHidroData"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a2.getInputPort("inEstablishConnection")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnection"),a2,a2.getInputPort("inEstablishConnection"))); parent.addCoupling(m.getOutputPort("outHidroData"),a2.getInputPort("inHidroData")); connections.add(new Connection(m,m.getOutputPort("outHidroData"),a2,a2.getInputPort("inHidroData"))); parent.addCoupling(a2.getOutputPort("outCoordinateSatellite"),m.getInputPort("inCoordinateSatellite")); connections.add(new Connection(a2,a2.getOutputPort("outCoordinateSatellite"),m,m.getInputPort("inCoordinateSatellite"))); } else if(getTypeCons(a1).equals("PCDAgro")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { parent.addCoupling(m.getOutputPort("outEstablishConnection"),a1.getInputPort("inEstablishConnection")); connections.add(new Connection(m, m.getOutputPort("outEstablishConnection"), a1, a1.getInputPort("inEstablishConnection"))); parent.addCoupling(a1.getOutputPort("outAgroData"), m.getInputPort("inAgroData")); connections.add(new Connection(a1, a1.getOutputPort("outAgroData"), m, m.getInputPort("inAgroData"))); parent.addCoupling(a1.getOutputPort("outCoordinatePCD"), m.getInputPort("inCoordinatePCD")); connections.add(new Connection(a1, a1.getOutputPort("outCoordinatePCD"), m, m.getInputPort("inCoordinatePCD"))); parent.addCoupling(m.getOutputPort("outEstablishConnection"),a2.getInputPort("inEstablishConnection")); connections.add(new Connection(m,m.getOutputPort("outEstablishConnection"),a2,a2.getInputPort("inEstablishConnection"))); parent.addCoupling(m.getOutputPort("outAgroData"),a2.getInputPort("inAgroData")); connections.add(new Connection(m,m.getOutputPort("outAgroData"),a2,a2.getInputPort("inAgroData"))); parent.addCoupling(a2.getOutputPort("outCoordinateSatellite"),m.getInputPort("inCoordinateSatellite")); connections.add(new Connection(a2,a2.getOutputPort("outCoordinateSatellite"),m,m.getInputPort("inCoordinateSatellite"))); } } %>! add additional code <% private AtomicModelImpl getToConnectModel(AtomicModelImpl a) { if(constituents == null) return null; if(constituents.size() == 0) return null; AtomicModelImpl auxModel = null; if(constituents.size() > 0 ) { auxModel= constituents.get(constituents.size()-1); constituents.remove(auxModel); } for(AtomicModelImpl e : constituents) { boolean aux = true; if(getIsMediator(e)) { aux = false; } else for(Connection ee : connections) { if(!ee.outClass.getName().contains("StimuliGenerator")&&ee.inClass.equals(e)&&!ee.inPort.getName().contains("Checked")) { aux = false; } } if(aux&&verifyToConnectModel(a,e)) { constituents.add(auxModel); return e; } } if(auxModel != null) { constituents.add(auxModel); for(AtomicModelImpl e : constituents) { boolean aux = true; if(getIsMediator(e)) { aux = false; } else for(Connection ee : connections) { if(!ee.outClass.getName().contains("StimuliGenerator")&&ee.inClass.equals(e)&&!ee.inPort.getName().contains("Checked")) { aux = false; } } if(aux&&verifyToConnectModel(a,e)) { return e; } } } for(AtomicModelImpl e : constituents) { boolean aux = true; if(getIsMediator(e)) { aux = false; } if(aux&&verifyToConnectModel(a,e)) { constituents.add(auxModel); return e; } } return null; } %>! add additional code <% private boolean verifyToConnectModel(AtomicModelImpl a1, AtomicModelImpl a2) { if(a1 == null || a2 == null) return false; if(getTypeCons(a1).equals("DataCenter")&&getTypeCons(a2).equals("GroundStation")) { return true; } else if(getTypeCons(a1).equals("DataCenter")&&getTypeCons(a2).equals("CommandAndControl")) { return true; } else if(getTypeCons(a1).equals("CommandAndControl")&&getTypeCons(a2).equals("DataCenter")) { return true; } else if(getTypeCons(a1).equals("CommandAndControl")&&getTypeCons(a2).equals("GroundStation")) { return true; } else if(getTypeCons(a1).equals("GroundStation")&&getTypeCons(a2).equals("DataCenter")) { return true; } else if(getTypeCons(a1).equals("GroundStation")&&getTypeCons(a2).equals("CommandAndControl")) { return true; } else if(getTypeCons(a1).equals("GroundStation")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { return true; } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDMet")) { return true; } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDQagua")) { return true; } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDHidro")) { return true; } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDAgro")) { return true; } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("GroundStation")) { return true; } else if(getTypeCons(a1).equals("PCDMet")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { return true; } else if(getTypeCons(a1).equals("PCDQagua")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { return true; } else if(getTypeCons(a1).equals("PCDHidro")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { return true; } else if(getTypeCons(a1).equals("PCDAgro")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { return true; } return false; } %>! add additional code <% private AtomicModelImpl getCompatibleMediator(AtomicModelImpl a1, AtomicModelImpl a2) { AtomicModelImpl toReturn = null; if(a1 == null || a2 == null) return null; if(getTypeCons(a1).equals("DataCenter")&&getTypeCons(a2).equals("GroundStation")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorGroundToDataCenter")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorGroundToDataCenterRec"+contRecMediatorGroundToDataCenter); contRecMediatorGroundToDataCenter++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("DataCenter")&&getTypeCons(a2).equals("CommandAndControl")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorDataCenterToC2")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorDataCenterToC2Rec"+contRecMediatorDataCenterToC2); contRecMediatorDataCenterToC2++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("CommandAndControl")&&getTypeCons(a2).equals("DataCenter")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorDataCenterToC2")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorDataCenterToC2Rec"+contRecMediatorDataCenterToC2); contRecMediatorDataCenterToC2++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("CommandAndControl")&&getTypeCons(a2).equals("GroundStation")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorC2ToGround")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorC2ToGroundRec"+contRecMediatorC2ToGround); contRecMediatorC2ToGround++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("GroundStation")&&getTypeCons(a2).equals("DataCenter")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorGroundToDataCenter")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorGroundToDataCenterRec"+contRecMediatorGroundToDataCenter); contRecMediatorGroundToDataCenter++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("GroundStation")&&getTypeCons(a2).equals("CommandAndControl")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorC2ToGround")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorC2ToGroundRec"+contRecMediatorC2ToGround); contRecMediatorC2ToGround++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("GroundStation")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorGroundToSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorGroundToSatelliteRec"+contRecMediatorGroundToSatellite); contRecMediatorGroundToSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDMet")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorPCDtoSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorPCDtoSatelliteRec"+contRecMediatorPCDtoSatellite); contRecMediatorPCDtoSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDQagua")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorPCDtoSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorPCDtoSatelliteRec"+contRecMediatorPCDtoSatellite); contRecMediatorPCDtoSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDHidro")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorPCDtoSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorPCDtoSatelliteRec"+contRecMediatorPCDtoSatellite); contRecMediatorPCDtoSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("PCDAgro")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorPCDtoSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorPCDtoSatelliteRec"+contRecMediatorPCDtoSatellite); contRecMediatorPCDtoSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("SatelliteAmazonia3")&&getTypeCons(a2).equals("GroundStation")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorGroundToSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorGroundToSatelliteRec"+contRecMediatorGroundToSatellite); contRecMediatorGroundToSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("PCDMet")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorPCDtoSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorPCDtoSatelliteRec"+contRecMediatorPCDtoSatellite); contRecMediatorPCDtoSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("PCDQagua")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorPCDtoSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorPCDtoSatelliteRec"+contRecMediatorPCDtoSatellite); contRecMediatorPCDtoSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("PCDHidro")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorPCDtoSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorPCDtoSatelliteRec"+contRecMediatorPCDtoSatellite); contRecMediatorPCDtoSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } else if(getTypeCons(a1).equals("PCDAgro")&&getTypeCons(a2).equals("SatelliteAmazonia3")) { for(AtomicModelImpl e : originalConstituents) { if(getTypeCons(e).equals("MediatorPCDtoSatellite")) { try{ toReturn = e.getClass().newInstance(); toReturn.setName("MediatorPCDtoSatelliteRec"+contRecMediatorPCDtoSatellite); contRecMediatorPCDtoSatellite++; getParent().addChildModel(toReturn); constituents.add(toReturn); return toReturn; }catch(Exception TheOnlyException) {} } } } return toReturn; } %>! add additional code <% private ArrayList<AtomicModelImpl> initializeConstituents() { ArrayList<AtomicModelImpl> toReturn = new ArrayList<AtomicModelImpl>(); CoupledModelImpl parent = (CoupledModelImpl) getParent(); for (AtomicModel e : parent.getChildren()) { if(e instanceof AtomicModelImpl) { if(e instanceof DataCenterCP || e instanceof CommandAndControlSJC || e instanceof GroundStation || e instanceof Satellite || e instanceof Mediator1 || e instanceof Mediator2 || e instanceof Mediator3 || e instanceof Mediator4 || e instanceof Pcd30869 || e instanceof Pcd30870 || e instanceof Pcd30871 || e instanceof Pcd30873 || e instanceof Pcd30879 || e instanceof Pcd30881 || e instanceof Pcd30882 || e instanceof Pcd30948 || e instanceof Pcd31000 || e instanceof Pcd31006 || e instanceof Pcd31111 || e instanceof Pcd31112 || e instanceof Pcd31113 || e instanceof Pcd31114 || e instanceof Pcd31115 || e instanceof Pcd31116 || e instanceof Pcd31117 || e instanceof Pcd31118 || e instanceof Pcd31119 || e instanceof Pcd31132 || e instanceof Pcd31709 || e instanceof Pcd31770 || e instanceof Pcd31804 || e instanceof Pcd31805 || e instanceof Pcd31807 || e instanceof Pcd31808 || e instanceof Pcd31809 || e instanceof Pcd31810 || e instanceof Pcd31811 || e instanceof Pcd31812 || e instanceof Pcd31814 || e instanceof Pcd31817 || e instanceof Pcd31819 || e instanceof Pcd31820 || e instanceof Pcd31821 || e instanceof Pcd31822 || e instanceof Pcd31824 || e instanceof Pcd31826 || e instanceof Pcd31827 || e instanceof Pcd31828 || e instanceof Pcd31829 || e instanceof Pcd31830 || e instanceof Pcd31834 || e instanceof Pcd31835 || e instanceof Pcd31836 || e instanceof Pcd31837 || e instanceof Pcd31839 || e instanceof Pcd31841 || e instanceof Pcd31842 || e instanceof Pcd31844 || e instanceof Pcd31845 || e instanceof Pcd31847 || e instanceof Pcd31848 || e instanceof Pcd31849 || e instanceof Pcd31851 || e instanceof Pcd31852 || e instanceof Pcd31853 || e instanceof Pcd31854 || e instanceof Pcd31856 || e instanceof Pcd31858 || e instanceof Pcd32534 || e instanceof Pcd32537 || e instanceof Pcd32539 || e instanceof Pcd32543 || e instanceof Pcd32484 || e instanceof Pcd30900 || e instanceof Pcd30901 || e instanceof Pcd30960 || e instanceof Pcd31020 || e instanceof Pcd31021 || e instanceof Pcd31023 || e instanceof Pcd31025 || e instanceof Pcd31029 || e instanceof Pcd31071 || e instanceof Pcd31074 || e instanceof Pcd31075 || e instanceof Pcd31077 || e instanceof Pcd31078 || e instanceof Pcd31079 || e instanceof Pcd31081 || e instanceof Pcd31082 || e instanceof Pcd31085 || e instanceof Pcd31086 || e instanceof Pcd31088 || e instanceof Pcd31089 || e instanceof Pcd31090 || e instanceof Pcd31091 || e instanceof Pcd31092 || e instanceof Pcd31093 || e instanceof Pcd31094 || e instanceof Pcd31095 || e instanceof Pcd31096 || e instanceof Pcd31097 || e instanceof Pcd31098 || e instanceof Pcd31099 || e instanceof Pcd31100 || e instanceof Pcd31101 || e instanceof Pcd31102 || e instanceof Pcd31764 || e instanceof Pcd31780 || e instanceof Pcd31782 || e instanceof Pcd31783 || e instanceof Pcd31784 || e instanceof Pcd31785 || e instanceof Pcd31786 || e instanceof Pcd30800 || e instanceof Pcd30885 || e instanceof Pcd30887 || e instanceof Pcd30888 || e instanceof Pcd30890 || e instanceof Pcd30975 || e instanceof Pcd31744 || e instanceof Pcd31745 || e instanceof Pcd31746 || e instanceof Pcd31801 || e instanceof MediatorPcd1 || e instanceof MediatorPcd2 || e instanceof MediatorPcd3 || e instanceof MediatorPcd4 || e instanceof MediatorPcd5 || e instanceof MediatorPcd6 || e instanceof MediatorPcd7 || e instanceof MediatorPcd8 || e instanceof MediatorPcd9 || e instanceof MediatorPcd10 || e instanceof MediatorPcd11 || e instanceof MediatorPcd12 || e instanceof MediatorPcd13 || e instanceof MediatorPcd14 || e instanceof MediatorPcd15 || e instanceof MediatorPcd16 || e instanceof MediatorPcd17 || e instanceof MediatorPcd18 || e instanceof MediatorPcd19 || e instanceof MediatorPcd20 || e instanceof MediatorPcd21 || e instanceof MediatorPcd22 || e instanceof MediatorPcd23 || e instanceof MediatorPcd24 || e instanceof MediatorPcd25 || e instanceof MediatorPcd26 || e instanceof MediatorPcd27 || e instanceof MediatorPcd28 || e instanceof MediatorPcd29 || e instanceof MediatorPcd30 || e instanceof MediatorPcd31 || e instanceof MediatorPcd32 || e instanceof MediatorPcd33 || e instanceof MediatorPcd34 || e instanceof MediatorPcd35 || e instanceof MediatorPcd36 || e instanceof MediatorPcd37 || e instanceof MediatorPcd38 || e instanceof MediatorPcd39 || e instanceof MediatorPcd40 || e instanceof MediatorPcd41 || e instanceof MediatorPcd42 || e instanceof MediatorPcd43 || e instanceof MediatorPcd44 || e instanceof MediatorPcd45 || e instanceof MediatorPcd46 || e instanceof MediatorPcd47 || e instanceof MediatorPcd48 || e instanceof MediatorPcd49 || e instanceof MediatorPcd50 || e instanceof MediatorPcd51 || e instanceof MediatorPcd52 || e instanceof MediatorPcd53 || e instanceof MediatorPcd54 || e instanceof MediatorPcd55 || e instanceof MediatorPcd56 || e instanceof MediatorPcd57 || e instanceof MediatorPcd58 || e instanceof MediatorPcd59 || e instanceof MediatorPcd60 || e instanceof MediatorPcd134 || e instanceof MediatorPcd135 || e instanceof MediatorPcd136 || e instanceof MediatorPcd137 || e instanceof MediatorPcd138 || e instanceof MediatorPcd139 || e instanceof MediatorPcd140 || e instanceof MediatorPcd141 || e instanceof MediatorPcd142 || e instanceof MediatorPcd143 || e instanceof MediatorPcd144 || e instanceof MediatorPcd145 || e instanceof MediatorPcd146 || e instanceof MediatorPcd147 || e instanceof MediatorPcd148 || e instanceof MediatorPcd149 || e instanceof MediatorPcd150 || e instanceof MediatorPcd151 || e instanceof MediatorPcd152 || e instanceof MediatorPcd153 || e instanceof MediatorPcd154 || e instanceof MediatorPcd155 || e instanceof MediatorPcd156 || e instanceof MediatorPcd157 || e instanceof MediatorPcd158 || e instanceof MediatorPcd159 || e instanceof MediatorPcd160 || e instanceof MediatorPcd161 || e instanceof MediatorPcd162 || e instanceof MediatorPcd163 || e instanceof MediatorPcd164 || e instanceof MediatorPcd165 || e instanceof MediatorPcd166 || e instanceof MediatorPcd167 || e instanceof MediatorPcd168 || e instanceof MediatorPcd169 || e instanceof MediatorPcd170 || e instanceof MediatorPcd171 || e instanceof MediatorPcd172 || e instanceof MediatorPcd173 || e instanceof MediatorPcd174 || e instanceof MediatorPcd175 || e instanceof MediatorPcd176 || e instanceof MediatorPcd214 || e instanceof MediatorPcd215 || e instanceof MediatorPcd216 || e instanceof MediatorPcd217 || e instanceof MediatorPcd218 || e instanceof MediatorPcd219 || e instanceof MediatorPcd220 || e instanceof MediatorPcd221 || e instanceof MediatorPcd222 || e instanceof MediatorPcd223) toReturn.add((AtomicModelImpl)e); } } return toReturn; } %>! add additional code <% private ArrayList<Connection> initializeConnections() { ArrayList<Connection> toReturn = new ArrayList<Connection>(); SpaceSoSArchitecture spaceSoSArchitecture; DataCenterCP dataCenterCP = new DataCenterCP(); dataCenters.clear(); CommandAndControlSJC commandAndControlSJC = new CommandAndControlSJC(); commandAndControls.clear(); GroundStation groundStation = new GroundStation(); groundStations.clear(); Satellite satellite = new Satellite(); satelliteAmazonia3s.clear(); Mediator1 mediator1 = new Mediator1(); mediatorDataCenterToC2s.clear(); Mediator2 mediator2 = new Mediator2(); mediatorC2ToGrounds.clear(); Mediator3 mediator3 = new Mediator3(); mediatorGroundToSatellites.clear(); Mediator4 mediator4 = new Mediator4(); mediatorGroundToDataCenters.clear(); Pcd30869 pcd30869 = new Pcd30869(); pCDMets.clear(); Pcd30870 pcd30870 = new Pcd30870(); pCDMets.clear(); Pcd30871 pcd30871 = new Pcd30871(); pCDMets.clear(); Pcd30873 pcd30873 = new Pcd30873(); pCDMets.clear(); Pcd30879 pcd30879 = new Pcd30879(); pCDMets.clear(); Pcd30881 pcd30881 = new Pcd30881(); pCDMets.clear(); Pcd30882 pcd30882 = new Pcd30882(); pCDMets.clear(); Pcd30948 pcd30948 = new Pcd30948(); pCDMets.clear(); Pcd31000 pcd31000 = new Pcd31000(); pCDMets.clear(); Pcd31006 pcd31006 = new Pcd31006(); pCDMets.clear(); Pcd31111 pcd31111 = new Pcd31111(); pCDMets.clear(); Pcd31112 pcd31112 = new Pcd31112(); pCDMets.clear(); Pcd31113 pcd31113 = new Pcd31113(); pCDMets.clear(); Pcd31114 pcd31114 = new Pcd31114(); pCDMets.clear(); Pcd31115 pcd31115 = new Pcd31115(); pCDMets.clear(); Pcd31116 pcd31116 = new Pcd31116(); pCDMets.clear(); Pcd31117 pcd31117 = new Pcd31117(); pCDMets.clear(); Pcd31118 pcd31118 = new Pcd31118(); pCDMets.clear(); Pcd31119 pcd31119 = new Pcd31119(); pCDMets.clear(); Pcd31132 pcd31132 = new Pcd31132(); pCDMets.clear(); Pcd31709 pcd31709 = new Pcd31709(); pCDMets.clear(); Pcd31770 pcd31770 = new Pcd31770(); pCDMets.clear(); Pcd31804 pcd31804 = new Pcd31804(); pCDMets.clear(); Pcd31805 pcd31805 = new Pcd31805(); pCDMets.clear(); Pcd31807 pcd31807 = new Pcd31807(); pCDMets.clear(); Pcd31808 pcd31808 = new Pcd31808(); pCDMets.clear(); Pcd31809 pcd31809 = new Pcd31809(); pCDMets.clear(); Pcd31810 pcd31810 = new Pcd31810(); pCDMets.clear(); Pcd31811 pcd31811 = new Pcd31811(); pCDMets.clear(); Pcd31812 pcd31812 = new Pcd31812(); pCDMets.clear(); Pcd31814 pcd31814 = new Pcd31814(); pCDMets.clear(); Pcd31817 pcd31817 = new Pcd31817(); pCDMets.clear(); Pcd31819 pcd31819 = new Pcd31819(); pCDMets.clear(); Pcd31820 pcd31820 = new Pcd31820(); pCDMets.clear(); Pcd31821 pcd31821 = new Pcd31821(); pCDMets.clear(); Pcd31822 pcd31822 = new Pcd31822(); pCDMets.clear(); Pcd31824 pcd31824 = new Pcd31824(); pCDMets.clear(); Pcd31826 pcd31826 = new Pcd31826(); pCDMets.clear(); Pcd31827 pcd31827 = new Pcd31827(); pCDMets.clear(); Pcd31828 pcd31828 = new Pcd31828(); pCDMets.clear(); Pcd31829 pcd31829 = new Pcd31829(); pCDMets.clear(); Pcd31830 pcd31830 = new Pcd31830(); pCDMets.clear(); Pcd31834 pcd31834 = new Pcd31834(); pCDMets.clear(); Pcd31835 pcd31835 = new Pcd31835(); pCDMets.clear(); Pcd31836 pcd31836 = new Pcd31836(); pCDMets.clear(); Pcd31837 pcd31837 = new Pcd31837(); pCDMets.clear(); Pcd31839 pcd31839 = new Pcd31839(); pCDMets.clear(); Pcd31841 pcd31841 = new Pcd31841(); pCDMets.clear(); Pcd31842 pcd31842 = new Pcd31842(); pCDMets.clear(); Pcd31844 pcd31844 = new Pcd31844(); pCDMets.clear(); Pcd31845 pcd31845 = new Pcd31845(); pCDMets.clear(); Pcd31847 pcd31847 = new Pcd31847(); pCDMets.clear(); Pcd31848 pcd31848 = new Pcd31848(); pCDMets.clear(); Pcd31849 pcd31849 = new Pcd31849(); pCDMets.clear(); Pcd31851 pcd31851 = new Pcd31851(); pCDMets.clear(); Pcd31852 pcd31852 = new Pcd31852(); pCDMets.clear(); Pcd31853 pcd31853 = new Pcd31853(); pCDMets.clear(); Pcd31854 pcd31854 = new Pcd31854(); pCDMets.clear(); Pcd31856 pcd31856 = new Pcd31856(); pCDMets.clear(); Pcd31858 pcd31858 = new Pcd31858(); pCDMets.clear(); Pcd32534 pcd32534 = new Pcd32534(); pCDQaguas.clear(); Pcd32537 pcd32537 = new Pcd32537(); pCDQaguas.clear(); Pcd32539 pcd32539 = new Pcd32539(); pCDQaguas.clear(); Pcd32543 pcd32543 = new Pcd32543(); pCDQaguas.clear(); Pcd32484 pcd32484 = new Pcd32484(); pCDQaguas.clear(); Pcd30900 pcd30900 = new Pcd30900(); pCDHidros.clear(); Pcd30901 pcd30901 = new Pcd30901(); pCDHidros.clear(); Pcd30960 pcd30960 = new Pcd30960(); pCDHidros.clear(); Pcd31020 pcd31020 = new Pcd31020(); pCDHidros.clear(); Pcd31021 pcd31021 = new Pcd31021(); pCDHidros.clear(); Pcd31023 pcd31023 = new Pcd31023(); pCDHidros.clear(); Pcd31025 pcd31025 = new Pcd31025(); pCDHidros.clear(); Pcd31029 pcd31029 = new Pcd31029(); pCDHidros.clear(); Pcd31071 pcd31071 = new Pcd31071(); pCDHidros.clear(); Pcd31074 pcd31074 = new Pcd31074(); pCDHidros.clear(); Pcd31075 pcd31075 = new Pcd31075(); pCDHidros.clear(); Pcd31077 pcd31077 = new Pcd31077(); pCDHidros.clear(); Pcd31078 pcd31078 = new Pcd31078(); pCDHidros.clear(); Pcd31079 pcd31079 = new Pcd31079(); pCDHidros.clear(); Pcd31081 pcd31081 = new Pcd31081(); pCDHidros.clear(); Pcd31082 pcd31082 = new Pcd31082(); pCDHidros.clear(); Pcd31085 pcd31085 = new Pcd31085(); pCDHidros.clear(); Pcd31086 pcd31086 = new Pcd31086(); pCDHidros.clear(); Pcd31088 pcd31088 = new Pcd31088(); pCDHidros.clear(); Pcd31089 pcd31089 = new Pcd31089(); pCDHidros.clear(); Pcd31090 pcd31090 = new Pcd31090(); pCDHidros.clear(); Pcd31091 pcd31091 = new Pcd31091(); pCDHidros.clear(); Pcd31092 pcd31092 = new Pcd31092(); pCDHidros.clear(); Pcd31093 pcd31093 = new Pcd31093(); pCDHidros.clear(); Pcd31094 pcd31094 = new Pcd31094(); pCDHidros.clear(); Pcd31095 pcd31095 = new Pcd31095(); pCDHidros.clear(); Pcd31096 pcd31096 = new Pcd31096(); pCDHidros.clear(); Pcd31097 pcd31097 = new Pcd31097(); pCDHidros.clear(); Pcd31098 pcd31098 = new Pcd31098(); pCDHidros.clear(); Pcd31099 pcd31099 = new Pcd31099(); pCDHidros.clear(); Pcd31100 pcd31100 = new Pcd31100(); pCDHidros.clear(); Pcd31101 pcd31101 = new Pcd31101(); pCDHidros.clear(); Pcd31102 pcd31102 = new Pcd31102(); pCDHidros.clear(); Pcd31764 pcd31764 = new Pcd31764(); pCDHidros.clear(); Pcd31780 pcd31780 = new Pcd31780(); pCDHidros.clear(); Pcd31782 pcd31782 = new Pcd31782(); pCDHidros.clear(); Pcd31783 pcd31783 = new Pcd31783(); pCDHidros.clear(); Pcd31784 pcd31784 = new Pcd31784(); pCDHidros.clear(); Pcd31785 pcd31785 = new Pcd31785(); pCDHidros.clear(); Pcd31786 pcd31786 = new Pcd31786(); pCDHidros.clear(); Pcd30800 pcd30800 = new Pcd30800(); pCDAgros.clear(); Pcd30885 pcd30885 = new Pcd30885(); pCDAgros.clear(); Pcd30887 pcd30887 = new Pcd30887(); pCDAgros.clear(); Pcd30888 pcd30888 = new Pcd30888(); pCDAgros.clear(); Pcd30890 pcd30890 = new Pcd30890(); pCDAgros.clear(); Pcd30975 pcd30975 = new Pcd30975(); pCDAgros.clear(); Pcd31744 pcd31744 = new Pcd31744(); pCDAgros.clear(); Pcd31745 pcd31745 = new Pcd31745(); pCDAgros.clear(); Pcd31746 pcd31746 = new Pcd31746(); pCDAgros.clear(); Pcd31801 pcd31801 = new Pcd31801(); pCDAgros.clear(); MediatorPcd1 mediatorPcd1 = new MediatorPcd1(); mediatorPCDtoSatellites.clear(); MediatorPcd2 mediatorPcd2 = new MediatorPcd2(); mediatorPCDtoSatellites.clear(); MediatorPcd3 mediatorPcd3 = new MediatorPcd3(); mediatorPCDtoSatellites.clear(); MediatorPcd4 mediatorPcd4 = new MediatorPcd4(); mediatorPCDtoSatellites.clear(); MediatorPcd5 mediatorPcd5 = new MediatorPcd5(); mediatorPCDtoSatellites.clear(); MediatorPcd6 mediatorPcd6 = new MediatorPcd6(); mediatorPCDtoSatellites.clear(); MediatorPcd7 mediatorPcd7 = new MediatorPcd7(); mediatorPCDtoSatellites.clear(); MediatorPcd8 mediatorPcd8 = new MediatorPcd8(); mediatorPCDtoSatellites.clear(); MediatorPcd9 mediatorPcd9 = new MediatorPcd9(); mediatorPCDtoSatellites.clear(); MediatorPcd10 mediatorPcd10 = new MediatorPcd10(); mediatorPCDtoSatellites.clear(); MediatorPcd11 mediatorPcd11 = new MediatorPcd11(); mediatorPCDtoSatellites.clear(); MediatorPcd12 mediatorPcd12 = new MediatorPcd12(); mediatorPCDtoSatellites.clear(); MediatorPcd13 mediatorPcd13 = new MediatorPcd13(); mediatorPCDtoSatellites.clear(); MediatorPcd14 mediatorPcd14 = new MediatorPcd14(); mediatorPCDtoSatellites.clear(); MediatorPcd15 mediatorPcd15 = new MediatorPcd15(); mediatorPCDtoSatellites.clear(); MediatorPcd16 mediatorPcd16 = new MediatorPcd16(); mediatorPCDtoSatellites.clear(); MediatorPcd17 mediatorPcd17 = new MediatorPcd17(); mediatorPCDtoSatellites.clear(); MediatorPcd18 mediatorPcd18 = new MediatorPcd18(); mediatorPCDtoSatellites.clear(); MediatorPcd19 mediatorPcd19 = new MediatorPcd19(); mediatorPCDtoSatellites.clear(); MediatorPcd20 mediatorPcd20 = new MediatorPcd20(); mediatorPCDtoSatellites.clear(); MediatorPcd21 mediatorPcd21 = new MediatorPcd21(); mediatorPCDtoSatellites.clear(); MediatorPcd22 mediatorPcd22 = new MediatorPcd22(); mediatorPCDtoSatellites.clear(); MediatorPcd23 mediatorPcd23 = new MediatorPcd23(); mediatorPCDtoSatellites.clear(); MediatorPcd24 mediatorPcd24 = new MediatorPcd24(); mediatorPCDtoSatellites.clear(); MediatorPcd25 mediatorPcd25 = new MediatorPcd25(); mediatorPCDtoSatellites.clear(); MediatorPcd26 mediatorPcd26 = new MediatorPcd26(); mediatorPCDtoSatellites.clear(); MediatorPcd27 mediatorPcd27 = new MediatorPcd27(); mediatorPCDtoSatellites.clear(); MediatorPcd28 mediatorPcd28 = new MediatorPcd28(); mediatorPCDtoSatellites.clear(); MediatorPcd29 mediatorPcd29 = new MediatorPcd29(); mediatorPCDtoSatellites.clear(); MediatorPcd30 mediatorPcd30 = new MediatorPcd30(); mediatorPCDtoSatellites.clear(); MediatorPcd31 mediatorPcd31 = new MediatorPcd31(); mediatorPCDtoSatellites.clear(); MediatorPcd32 mediatorPcd32 = new MediatorPcd32(); mediatorPCDtoSatellites.clear(); MediatorPcd33 mediatorPcd33 = new MediatorPcd33(); mediatorPCDtoSatellites.clear(); MediatorPcd34 mediatorPcd34 = new MediatorPcd34(); mediatorPCDtoSatellites.clear(); MediatorPcd35 mediatorPcd35 = new MediatorPcd35(); mediatorPCDtoSatellites.clear(); MediatorPcd36 mediatorPcd36 = new MediatorPcd36(); mediatorPCDtoSatellites.clear(); MediatorPcd37 mediatorPcd37 = new MediatorPcd37(); mediatorPCDtoSatellites.clear(); MediatorPcd38 mediatorPcd38 = new MediatorPcd38(); mediatorPCDtoSatellites.clear(); MediatorPcd39 mediatorPcd39 = new MediatorPcd39(); mediatorPCDtoSatellites.clear(); MediatorPcd40 mediatorPcd40 = new MediatorPcd40(); mediatorPCDtoSatellites.clear(); MediatorPcd41 mediatorPcd41 = new MediatorPcd41(); mediatorPCDtoSatellites.clear(); MediatorPcd42 mediatorPcd42 = new MediatorPcd42(); mediatorPCDtoSatellites.clear(); MediatorPcd43 mediatorPcd43 = new MediatorPcd43(); mediatorPCDtoSatellites.clear(); MediatorPcd44 mediatorPcd44 = new MediatorPcd44(); mediatorPCDtoSatellites.clear(); MediatorPcd45 mediatorPcd45 = new MediatorPcd45(); mediatorPCDtoSatellites.clear(); MediatorPcd46 mediatorPcd46 = new MediatorPcd46(); mediatorPCDtoSatellites.clear(); MediatorPcd47 mediatorPcd47 = new MediatorPcd47(); mediatorPCDtoSatellites.clear(); MediatorPcd48 mediatorPcd48 = new MediatorPcd48(); mediatorPCDtoSatellites.clear(); MediatorPcd49 mediatorPcd49 = new MediatorPcd49(); mediatorPCDtoSatellites.clear(); MediatorPcd50 mediatorPcd50 = new MediatorPcd50(); mediatorPCDtoSatellites.clear(); MediatorPcd51 mediatorPcd51 = new MediatorPcd51(); mediatorPCDtoSatellites.clear(); MediatorPcd52 mediatorPcd52 = new MediatorPcd52(); mediatorPCDtoSatellites.clear(); MediatorPcd53 mediatorPcd53 = new MediatorPcd53(); mediatorPCDtoSatellites.clear(); MediatorPcd54 mediatorPcd54 = new MediatorPcd54(); mediatorPCDtoSatellites.clear(); MediatorPcd55 mediatorPcd55 = new MediatorPcd55(); mediatorPCDtoSatellites.clear(); MediatorPcd56 mediatorPcd56 = new MediatorPcd56(); mediatorPCDtoSatellites.clear(); MediatorPcd57 mediatorPcd57 = new MediatorPcd57(); mediatorPCDtoSatellites.clear(); MediatorPcd58 mediatorPcd58 = new MediatorPcd58(); mediatorPCDtoSatellites.clear(); MediatorPcd59 mediatorPcd59 = new MediatorPcd59(); mediatorPCDtoSatellites.clear(); MediatorPcd60 mediatorPcd60 = new MediatorPcd60(); mediatorPCDtoSatellites.clear(); MediatorPcd134 mediatorPcd134 = new MediatorPcd134(); mediatorPCDtoSatellites.clear(); MediatorPcd135 mediatorPcd135 = new MediatorPcd135(); mediatorPCDtoSatellites.clear(); MediatorPcd136 mediatorPcd136 = new MediatorPcd136(); mediatorPCDtoSatellites.clear(); MediatorPcd137 mediatorPcd137 = new MediatorPcd137(); mediatorPCDtoSatellites.clear(); MediatorPcd138 mediatorPcd138 = new MediatorPcd138(); mediatorPCDtoSatellites.clear(); MediatorPcd139 mediatorPcd139 = new MediatorPcd139(); mediatorPCDtoSatellites.clear(); MediatorPcd140 mediatorPcd140 = new MediatorPcd140(); mediatorPCDtoSatellites.clear(); MediatorPcd141 mediatorPcd141 = new MediatorPcd141(); mediatorPCDtoSatellites.clear(); MediatorPcd142 mediatorPcd142 = new MediatorPcd142(); mediatorPCDtoSatellites.clear(); MediatorPcd143 mediatorPcd143 = new MediatorPcd143(); mediatorPCDtoSatellites.clear(); MediatorPcd144 mediatorPcd144 = new MediatorPcd144(); mediatorPCDtoSatellites.clear(); MediatorPcd145 mediatorPcd145 = new MediatorPcd145(); mediatorPCDtoSatellites.clear(); MediatorPcd146 mediatorPcd146 = new MediatorPcd146(); mediatorPCDtoSatellites.clear(); MediatorPcd147 mediatorPcd147 = new MediatorPcd147(); mediatorPCDtoSatellites.clear(); MediatorPcd148 mediatorPcd148 = new MediatorPcd148(); mediatorPCDtoSatellites.clear(); MediatorPcd149 mediatorPcd149 = new MediatorPcd149(); mediatorPCDtoSatellites.clear(); MediatorPcd150 mediatorPcd150 = new MediatorPcd150(); mediatorPCDtoSatellites.clear(); MediatorPcd151 mediatorPcd151 = new MediatorPcd151(); mediatorPCDtoSatellites.clear(); MediatorPcd152 mediatorPcd152 = new MediatorPcd152(); mediatorPCDtoSatellites.clear(); MediatorPcd153 mediatorPcd153 = new MediatorPcd153(); mediatorPCDtoSatellites.clear(); MediatorPcd154 mediatorPcd154 = new MediatorPcd154(); mediatorPCDtoSatellites.clear(); MediatorPcd155 mediatorPcd155 = new MediatorPcd155(); mediatorPCDtoSatellites.clear(); MediatorPcd156 mediatorPcd156 = new MediatorPcd156(); mediatorPCDtoSatellites.clear(); MediatorPcd157 mediatorPcd157 = new MediatorPcd157(); mediatorPCDtoSatellites.clear(); MediatorPcd158 mediatorPcd158 = new MediatorPcd158(); mediatorPCDtoSatellites.clear(); MediatorPcd159 mediatorPcd159 = new MediatorPcd159(); mediatorPCDtoSatellites.clear(); MediatorPcd160 mediatorPcd160 = new MediatorPcd160(); mediatorPCDtoSatellites.clear(); MediatorPcd161 mediatorPcd161 = new MediatorPcd161(); mediatorPCDtoSatellites.clear(); MediatorPcd162 mediatorPcd162 = new MediatorPcd162(); mediatorPCDtoSatellites.clear(); MediatorPcd163 mediatorPcd163 = new MediatorPcd163(); mediatorPCDtoSatellites.clear(); MediatorPcd164 mediatorPcd164 = new MediatorPcd164(); mediatorPCDtoSatellites.clear(); MediatorPcd165 mediatorPcd165 = new MediatorPcd165(); mediatorPCDtoSatellites.clear(); MediatorPcd166 mediatorPcd166 = new MediatorPcd166(); mediatorPCDtoSatellites.clear(); MediatorPcd167 mediatorPcd167 = new MediatorPcd167(); mediatorPCDtoSatellites.clear(); MediatorPcd168 mediatorPcd168 = new MediatorPcd168(); mediatorPCDtoSatellites.clear(); MediatorPcd169 mediatorPcd169 = new MediatorPcd169(); mediatorPCDtoSatellites.clear(); MediatorPcd170 mediatorPcd170 = new MediatorPcd170(); mediatorPCDtoSatellites.clear(); MediatorPcd171 mediatorPcd171 = new MediatorPcd171(); mediatorPCDtoSatellites.clear(); MediatorPcd172 mediatorPcd172 = new MediatorPcd172(); mediatorPCDtoSatellites.clear(); MediatorPcd173 mediatorPcd173 = new MediatorPcd173(); mediatorPCDtoSatellites.clear(); MediatorPcd174 mediatorPcd174 = new MediatorPcd174(); mediatorPCDtoSatellites.clear(); MediatorPcd175 mediatorPcd175 = new MediatorPcd175(); mediatorPCDtoSatellites.clear(); MediatorPcd176 mediatorPcd176 = new MediatorPcd176(); mediatorPCDtoSatellites.clear(); MediatorPcd214 mediatorPcd214 = new MediatorPcd214(); mediatorPCDtoSatellites.clear(); MediatorPcd215 mediatorPcd215 = new MediatorPcd215(); mediatorPCDtoSatellites.clear(); MediatorPcd216 mediatorPcd216 = new MediatorPcd216(); mediatorPCDtoSatellites.clear(); MediatorPcd217 mediatorPcd217 = new MediatorPcd217(); mediatorPCDtoSatellites.clear(); MediatorPcd218 mediatorPcd218 = new MediatorPcd218(); mediatorPCDtoSatellites.clear(); MediatorPcd219 mediatorPcd219 = new MediatorPcd219(); mediatorPCDtoSatellites.clear(); MediatorPcd220 mediatorPcd220 = new MediatorPcd220(); mediatorPCDtoSatellites.clear(); MediatorPcd221 mediatorPcd221 = new MediatorPcd221(); mediatorPCDtoSatellites.clear(); MediatorPcd222 mediatorPcd222 = new MediatorPcd222(); mediatorPCDtoSatellites.clear(); MediatorPcd223 mediatorPcd223 = new MediatorPcd223(); mediatorPCDtoSatellites.clear(); for(AtomicModelImpl aux : constituents) { if(aux instanceof DataCenterCP) { dataCenterCP = (DataCenterCP)aux; dataCenters.add(aux); } else if(aux instanceof CommandAndControlSJC) { commandAndControlSJC = (CommandAndControlSJC)aux; commandAndControls.add(aux); } else if(aux instanceof GroundStation) { groundStation = (GroundStation)aux; groundStations.add(aux); } else if(aux instanceof Satellite) { satellite = (Satellite)aux; satelliteAmazonia3s.add(aux); } else if(aux instanceof Mediator1) { mediator1 = (Mediator1)aux; mediatorDataCenterToC2s.add(aux); } else if(aux instanceof Mediator2) { mediator2 = (Mediator2)aux; mediatorC2ToGrounds.add(aux); } else if(aux instanceof Mediator3) { mediator3 = (Mediator3)aux; mediatorGroundToSatellites.add(aux); } else if(aux instanceof Mediator4) { mediator4 = (Mediator4)aux; mediatorGroundToDataCenters.add(aux); } else if(aux instanceof Pcd30869) { pcd30869 = (Pcd30869)aux; pCDMets.add(aux); } else if(aux instanceof Pcd30870) { pcd30870 = (Pcd30870)aux; pCDMets.add(aux); } else if(aux instanceof Pcd30871) { pcd30871 = (Pcd30871)aux; pCDMets.add(aux); } else if(aux instanceof Pcd30873) { pcd30873 = (Pcd30873)aux; pCDMets.add(aux); } else if(aux instanceof Pcd30879) { pcd30879 = (Pcd30879)aux; pCDMets.add(aux); } else if(aux instanceof Pcd30881) { pcd30881 = (Pcd30881)aux; pCDMets.add(aux); } else if(aux instanceof Pcd30882) { pcd30882 = (Pcd30882)aux; pCDMets.add(aux); } else if(aux instanceof Pcd30948) { pcd30948 = (Pcd30948)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31000) { pcd31000 = (Pcd31000)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31006) { pcd31006 = (Pcd31006)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31111) { pcd31111 = (Pcd31111)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31112) { pcd31112 = (Pcd31112)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31113) { pcd31113 = (Pcd31113)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31114) { pcd31114 = (Pcd31114)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31115) { pcd31115 = (Pcd31115)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31116) { pcd31116 = (Pcd31116)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31117) { pcd31117 = (Pcd31117)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31118) { pcd31118 = (Pcd31118)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31119) { pcd31119 = (Pcd31119)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31132) { pcd31132 = (Pcd31132)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31709) { pcd31709 = (Pcd31709)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31770) { pcd31770 = (Pcd31770)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31804) { pcd31804 = (Pcd31804)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31805) { pcd31805 = (Pcd31805)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31807) { pcd31807 = (Pcd31807)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31808) { pcd31808 = (Pcd31808)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31809) { pcd31809 = (Pcd31809)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31810) { pcd31810 = (Pcd31810)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31811) { pcd31811 = (Pcd31811)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31812) { pcd31812 = (Pcd31812)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31814) { pcd31814 = (Pcd31814)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31817) { pcd31817 = (Pcd31817)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31819) { pcd31819 = (Pcd31819)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31820) { pcd31820 = (Pcd31820)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31821) { pcd31821 = (Pcd31821)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31822) { pcd31822 = (Pcd31822)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31824) { pcd31824 = (Pcd31824)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31826) { pcd31826 = (Pcd31826)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31827) { pcd31827 = (Pcd31827)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31828) { pcd31828 = (Pcd31828)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31829) { pcd31829 = (Pcd31829)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31830) { pcd31830 = (Pcd31830)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31834) { pcd31834 = (Pcd31834)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31835) { pcd31835 = (Pcd31835)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31836) { pcd31836 = (Pcd31836)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31837) { pcd31837 = (Pcd31837)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31839) { pcd31839 = (Pcd31839)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31841) { pcd31841 = (Pcd31841)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31842) { pcd31842 = (Pcd31842)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31844) { pcd31844 = (Pcd31844)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31845) { pcd31845 = (Pcd31845)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31847) { pcd31847 = (Pcd31847)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31848) { pcd31848 = (Pcd31848)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31849) { pcd31849 = (Pcd31849)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31851) { pcd31851 = (Pcd31851)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31852) { pcd31852 = (Pcd31852)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31853) { pcd31853 = (Pcd31853)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31854) { pcd31854 = (Pcd31854)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31856) { pcd31856 = (Pcd31856)aux; pCDMets.add(aux); } else if(aux instanceof Pcd31858) { pcd31858 = (Pcd31858)aux; pCDMets.add(aux); } else if(aux instanceof Pcd32534) { pcd32534 = (Pcd32534)aux; pCDQaguas.add(aux); } else if(aux instanceof Pcd32537) { pcd32537 = (Pcd32537)aux; pCDQaguas.add(aux); } else if(aux instanceof Pcd32539) { pcd32539 = (Pcd32539)aux; pCDQaguas.add(aux); } else if(aux instanceof Pcd32543) { pcd32543 = (Pcd32543)aux; pCDQaguas.add(aux); } else if(aux instanceof Pcd32484) { pcd32484 = (Pcd32484)aux; pCDQaguas.add(aux); } else if(aux instanceof Pcd30900) { pcd30900 = (Pcd30900)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd30901) { pcd30901 = (Pcd30901)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd30960) { pcd30960 = (Pcd30960)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31020) { pcd31020 = (Pcd31020)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31021) { pcd31021 = (Pcd31021)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31023) { pcd31023 = (Pcd31023)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31025) { pcd31025 = (Pcd31025)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31029) { pcd31029 = (Pcd31029)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31071) { pcd31071 = (Pcd31071)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31074) { pcd31074 = (Pcd31074)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31075) { pcd31075 = (Pcd31075)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31077) { pcd31077 = (Pcd31077)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31078) { pcd31078 = (Pcd31078)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31079) { pcd31079 = (Pcd31079)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31081) { pcd31081 = (Pcd31081)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31082) { pcd31082 = (Pcd31082)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31085) { pcd31085 = (Pcd31085)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31086) { pcd31086 = (Pcd31086)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31088) { pcd31088 = (Pcd31088)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31089) { pcd31089 = (Pcd31089)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31090) { pcd31090 = (Pcd31090)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31091) { pcd31091 = (Pcd31091)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31092) { pcd31092 = (Pcd31092)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31093) { pcd31093 = (Pcd31093)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31094) { pcd31094 = (Pcd31094)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31095) { pcd31095 = (Pcd31095)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31096) { pcd31096 = (Pcd31096)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31097) { pcd31097 = (Pcd31097)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31098) { pcd31098 = (Pcd31098)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31099) { pcd31099 = (Pcd31099)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31100) { pcd31100 = (Pcd31100)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31101) { pcd31101 = (Pcd31101)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31102) { pcd31102 = (Pcd31102)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31764) { pcd31764 = (Pcd31764)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31780) { pcd31780 = (Pcd31780)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31782) { pcd31782 = (Pcd31782)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31783) { pcd31783 = (Pcd31783)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31784) { pcd31784 = (Pcd31784)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31785) { pcd31785 = (Pcd31785)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd31786) { pcd31786 = (Pcd31786)aux; pCDHidros.add(aux); } else if(aux instanceof Pcd30800) { pcd30800 = (Pcd30800)aux; pCDAgros.add(aux); } else if(aux instanceof Pcd30885) { pcd30885 = (Pcd30885)aux; pCDAgros.add(aux); } else if(aux instanceof Pcd30887) { pcd30887 = (Pcd30887)aux; pCDAgros.add(aux); } else if(aux instanceof Pcd30888) { pcd30888 = (Pcd30888)aux; pCDAgros.add(aux); } else if(aux instanceof Pcd30890) { pcd30890 = (Pcd30890)aux; pCDAgros.add(aux); } else if(aux instanceof Pcd30975) { pcd30975 = (Pcd30975)aux; pCDAgros.add(aux); } else if(aux instanceof Pcd31744) { pcd31744 = (Pcd31744)aux; pCDAgros.add(aux); } else if(aux instanceof Pcd31745) { pcd31745 = (Pcd31745)aux; pCDAgros.add(aux); } else if(aux instanceof Pcd31746) { pcd31746 = (Pcd31746)aux; pCDAgros.add(aux); } else if(aux instanceof Pcd31801) { pcd31801 = (Pcd31801)aux; pCDAgros.add(aux); } else if(aux instanceof MediatorPcd1) { mediatorPcd1 = (MediatorPcd1)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd2) { mediatorPcd2 = (MediatorPcd2)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd3) { mediatorPcd3 = (MediatorPcd3)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd4) { mediatorPcd4 = (MediatorPcd4)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd5) { mediatorPcd5 = (MediatorPcd5)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd6) { mediatorPcd6 = (MediatorPcd6)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd7) { mediatorPcd7 = (MediatorPcd7)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd8) { mediatorPcd8 = (MediatorPcd8)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd9) { mediatorPcd9 = (MediatorPcd9)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd10) { mediatorPcd10 = (MediatorPcd10)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd11) { mediatorPcd11 = (MediatorPcd11)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd12) { mediatorPcd12 = (MediatorPcd12)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd13) { mediatorPcd13 = (MediatorPcd13)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd14) { mediatorPcd14 = (MediatorPcd14)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd15) { mediatorPcd15 = (MediatorPcd15)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd16) { mediatorPcd16 = (MediatorPcd16)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd17) { mediatorPcd17 = (MediatorPcd17)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd18) { mediatorPcd18 = (MediatorPcd18)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd19) { mediatorPcd19 = (MediatorPcd19)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd20) { mediatorPcd20 = (MediatorPcd20)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd21) { mediatorPcd21 = (MediatorPcd21)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd22) { mediatorPcd22 = (MediatorPcd22)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd23) { mediatorPcd23 = (MediatorPcd23)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd24) { mediatorPcd24 = (MediatorPcd24)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd25) { mediatorPcd25 = (MediatorPcd25)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd26) { mediatorPcd26 = (MediatorPcd26)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd27) { mediatorPcd27 = (MediatorPcd27)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd28) { mediatorPcd28 = (MediatorPcd28)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd29) { mediatorPcd29 = (MediatorPcd29)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd30) { mediatorPcd30 = (MediatorPcd30)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd31) { mediatorPcd31 = (MediatorPcd31)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd32) { mediatorPcd32 = (MediatorPcd32)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd33) { mediatorPcd33 = (MediatorPcd33)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd34) { mediatorPcd34 = (MediatorPcd34)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd35) { mediatorPcd35 = (MediatorPcd35)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd36) { mediatorPcd36 = (MediatorPcd36)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd37) { mediatorPcd37 = (MediatorPcd37)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd38) { mediatorPcd38 = (MediatorPcd38)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd39) { mediatorPcd39 = (MediatorPcd39)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd40) { mediatorPcd40 = (MediatorPcd40)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd41) { mediatorPcd41 = (MediatorPcd41)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd42) { mediatorPcd42 = (MediatorPcd42)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd43) { mediatorPcd43 = (MediatorPcd43)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd44) { mediatorPcd44 = (MediatorPcd44)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd45) { mediatorPcd45 = (MediatorPcd45)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd46) { mediatorPcd46 = (MediatorPcd46)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd47) { mediatorPcd47 = (MediatorPcd47)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd48) { mediatorPcd48 = (MediatorPcd48)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd49) { mediatorPcd49 = (MediatorPcd49)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd50) { mediatorPcd50 = (MediatorPcd50)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd51) { mediatorPcd51 = (MediatorPcd51)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd52) { mediatorPcd52 = (MediatorPcd52)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd53) { mediatorPcd53 = (MediatorPcd53)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd54) { mediatorPcd54 = (MediatorPcd54)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd55) { mediatorPcd55 = (MediatorPcd55)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd56) { mediatorPcd56 = (MediatorPcd56)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd57) { mediatorPcd57 = (MediatorPcd57)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd58) { mediatorPcd58 = (MediatorPcd58)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd59) { mediatorPcd59 = (MediatorPcd59)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd60) { mediatorPcd60 = (MediatorPcd60)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd134) { mediatorPcd134 = (MediatorPcd134)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd135) { mediatorPcd135 = (MediatorPcd135)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd136) { mediatorPcd136 = (MediatorPcd136)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd137) { mediatorPcd137 = (MediatorPcd137)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd138) { mediatorPcd138 = (MediatorPcd138)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd139) { mediatorPcd139 = (MediatorPcd139)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd140) { mediatorPcd140 = (MediatorPcd140)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd141) { mediatorPcd141 = (MediatorPcd141)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd142) { mediatorPcd142 = (MediatorPcd142)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd143) { mediatorPcd143 = (MediatorPcd143)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd144) { mediatorPcd144 = (MediatorPcd144)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd145) { mediatorPcd145 = (MediatorPcd145)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd146) { mediatorPcd146 = (MediatorPcd146)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd147) { mediatorPcd147 = (MediatorPcd147)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd148) { mediatorPcd148 = (MediatorPcd148)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd149) { mediatorPcd149 = (MediatorPcd149)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd150) { mediatorPcd150 = (MediatorPcd150)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd151) { mediatorPcd151 = (MediatorPcd151)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd152) { mediatorPcd152 = (MediatorPcd152)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd153) { mediatorPcd153 = (MediatorPcd153)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd154) { mediatorPcd154 = (MediatorPcd154)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd155) { mediatorPcd155 = (MediatorPcd155)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd156) { mediatorPcd156 = (MediatorPcd156)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd157) { mediatorPcd157 = (MediatorPcd157)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd158) { mediatorPcd158 = (MediatorPcd158)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd159) { mediatorPcd159 = (MediatorPcd159)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd160) { mediatorPcd160 = (MediatorPcd160)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd161) { mediatorPcd161 = (MediatorPcd161)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd162) { mediatorPcd162 = (MediatorPcd162)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd163) { mediatorPcd163 = (MediatorPcd163)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd164) { mediatorPcd164 = (MediatorPcd164)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd165) { mediatorPcd165 = (MediatorPcd165)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd166) { mediatorPcd166 = (MediatorPcd166)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd167) { mediatorPcd167 = (MediatorPcd167)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd168) { mediatorPcd168 = (MediatorPcd168)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd169) { mediatorPcd169 = (MediatorPcd169)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd170) { mediatorPcd170 = (MediatorPcd170)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd171) { mediatorPcd171 = (MediatorPcd171)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd172) { mediatorPcd172 = (MediatorPcd172)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd173) { mediatorPcd173 = (MediatorPcd173)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd174) { mediatorPcd174 = (MediatorPcd174)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd175) { mediatorPcd175 = (MediatorPcd175)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd176) { mediatorPcd176 = (MediatorPcd176)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd214) { mediatorPcd214 = (MediatorPcd214)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd215) { mediatorPcd215 = (MediatorPcd215)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd216) { mediatorPcd216 = (MediatorPcd216)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd217) { mediatorPcd217 = (MediatorPcd217)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd218) { mediatorPcd218 = (MediatorPcd218)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd219) { mediatorPcd219 = (MediatorPcd219)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd220) { mediatorPcd220 = (MediatorPcd220)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd221) { mediatorPcd221 = (MediatorPcd221)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd222) { mediatorPcd222 = (MediatorPcd222)aux; mediatorPCDtoSatellites.add(aux); } else if(aux instanceof MediatorPcd223) { mediatorPcd223 = (MediatorPcd223)aux; mediatorPCDtoSatellites.add(aux); } } toReturn.add(new Connection(dataCenterCP, dataCenterCP.outRequest, mediator1, mediator1.inRequest)); toReturn.add(new Connection(mediator1, mediator1.outRequest, commandAndControlSJC, commandAndControlSJC.inRequest)); toReturn.add(new Connection(commandAndControlSJC, commandAndControlSJC.outOperation, mediator2, mediator2.inOperation)); toReturn.add(new Connection(mediator2, mediator2.outOperation, groundStation, groundStation.inOperation)); toReturn.add(new Connection(groundStation, groundStation.outTelecommand, mediator3, mediator3.inTelecommand)); toReturn.add(new Connection(mediator3, mediator3.outTelecommand, satellite, satellite.inTelecommand)); toReturn.add(new Connection(satellite, satellite.outTelemetry, mediator3, mediator3.inTelemetry)); toReturn.add(new Connection(mediator3, mediator3.outTelemetry, groundStation, groundStation.inTelemetry)); toReturn.add(new Connection(mediator3, mediator3.outEstablishConnectionGS, satellite, satellite.inEstablishConnectionGS)); toReturn.add(new Connection(mediator3, mediator3.outEstablishConnectionGS, groundStation, groundStation.inEstablishConnectionGS)); toReturn.add(new Connection(groundStation, groundStation.outTelemetry, mediator4, mediator4.inTelemetry)); toReturn.add(new Connection(mediator4, mediator4.outTelemetry, dataCenterCP, dataCenterCP.inTelemetry)); toReturn.add(new Connection(pcd30869, pcd30869.outCoordinatePCD, mediatorPcd1, mediatorPcd1.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd1, mediatorPcd1.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd1, mediatorPcd1.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd1, mediatorPcd1.outEstablishConnection, pcd30869, pcd30869.inEstablishConnection)); toReturn.add(new Connection(pcd30869, pcd30869.outMetData, mediatorPcd1, mediatorPcd1.inMetData)); toReturn.add(new Connection(mediatorPcd1, mediatorPcd1.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd30870, pcd30870.outCoordinatePCD, mediatorPcd2, mediatorPcd2.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd2, mediatorPcd2.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd2, mediatorPcd2.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd2, mediatorPcd2.outEstablishConnection, pcd30870, pcd30870.inEstablishConnection)); toReturn.add(new Connection(pcd30870, pcd30870.outMetData, mediatorPcd2, mediatorPcd2.inMetData)); toReturn.add(new Connection(mediatorPcd2, mediatorPcd2.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd30871, pcd30871.outCoordinatePCD, mediatorPcd3, mediatorPcd3.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd3, mediatorPcd3.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd3, mediatorPcd3.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd3, mediatorPcd3.outEstablishConnection, pcd30871, pcd30871.inEstablishConnection)); toReturn.add(new Connection(pcd30871, pcd30871.outMetData, mediatorPcd3, mediatorPcd3.inMetData)); toReturn.add(new Connection(mediatorPcd3, mediatorPcd3.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd30873, pcd30873.outCoordinatePCD, mediatorPcd4, mediatorPcd4.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd4, mediatorPcd4.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd4, mediatorPcd4.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd4, mediatorPcd4.outEstablishConnection, pcd30873, pcd30873.inEstablishConnection)); toReturn.add(new Connection(pcd30873, pcd30873.outMetData, mediatorPcd4, mediatorPcd4.inMetData)); toReturn.add(new Connection(mediatorPcd4, mediatorPcd4.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd30879, pcd30879.outCoordinatePCD, mediatorPcd5, mediatorPcd5.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd5, mediatorPcd5.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd5, mediatorPcd5.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd5, mediatorPcd5.outEstablishConnection, pcd30879, pcd30879.inEstablishConnection)); toReturn.add(new Connection(pcd30879, pcd30879.outMetData, mediatorPcd5, mediatorPcd5.inMetData)); toReturn.add(new Connection(mediatorPcd5, mediatorPcd5.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd30881, pcd30881.outCoordinatePCD, mediatorPcd6, mediatorPcd6.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd6, mediatorPcd6.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd6, mediatorPcd6.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd6, mediatorPcd6.outEstablishConnection, pcd30881, pcd30881.inEstablishConnection)); toReturn.add(new Connection(pcd30881, pcd30881.outMetData, mediatorPcd6, mediatorPcd6.inMetData)); toReturn.add(new Connection(mediatorPcd6, mediatorPcd6.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd30882, pcd30882.outCoordinatePCD, mediatorPcd7, mediatorPcd7.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd7, mediatorPcd7.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd7, mediatorPcd7.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd7, mediatorPcd7.outEstablishConnection, pcd30882, pcd30882.inEstablishConnection)); toReturn.add(new Connection(pcd30882, pcd30882.outMetData, mediatorPcd7, mediatorPcd7.inMetData)); toReturn.add(new Connection(mediatorPcd7, mediatorPcd7.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd30948, pcd30948.outCoordinatePCD, mediatorPcd8, mediatorPcd8.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd8, mediatorPcd8.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd8, mediatorPcd8.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd8, mediatorPcd8.outEstablishConnection, pcd30948, pcd30948.inEstablishConnection)); toReturn.add(new Connection(pcd30948, pcd30948.outMetData, mediatorPcd8, mediatorPcd8.inMetData)); toReturn.add(new Connection(mediatorPcd8, mediatorPcd8.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31000, pcd31000.outCoordinatePCD, mediatorPcd9, mediatorPcd9.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd9, mediatorPcd9.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd9, mediatorPcd9.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd9, mediatorPcd9.outEstablishConnection, pcd31000, pcd31000.inEstablishConnection)); toReturn.add(new Connection(pcd31000, pcd31000.outMetData, mediatorPcd9, mediatorPcd9.inMetData)); toReturn.add(new Connection(mediatorPcd9, mediatorPcd9.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31006, pcd31006.outCoordinatePCD, mediatorPcd10, mediatorPcd10.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd10, mediatorPcd10.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd10, mediatorPcd10.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd10, mediatorPcd10.outEstablishConnection, pcd31006, pcd31006.inEstablishConnection)); toReturn.add(new Connection(pcd31006, pcd31006.outMetData, mediatorPcd10, mediatorPcd10.inMetData)); toReturn.add(new Connection(mediatorPcd10, mediatorPcd10.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31111, pcd31111.outCoordinatePCD, mediatorPcd11, mediatorPcd11.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd11, mediatorPcd11.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd11, mediatorPcd11.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd11, mediatorPcd11.outEstablishConnection, pcd31111, pcd31111.inEstablishConnection)); toReturn.add(new Connection(pcd31111, pcd31111.outMetData, mediatorPcd11, mediatorPcd11.inMetData)); toReturn.add(new Connection(mediatorPcd11, mediatorPcd11.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31112, pcd31112.outCoordinatePCD, mediatorPcd12, mediatorPcd12.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd12, mediatorPcd12.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd12, mediatorPcd12.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd12, mediatorPcd12.outEstablishConnection, pcd31112, pcd31112.inEstablishConnection)); toReturn.add(new Connection(pcd31112, pcd31112.outMetData, mediatorPcd12, mediatorPcd12.inMetData)); toReturn.add(new Connection(mediatorPcd12, mediatorPcd12.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31113, pcd31113.outCoordinatePCD, mediatorPcd13, mediatorPcd13.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd13, mediatorPcd13.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd13, mediatorPcd13.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd13, mediatorPcd13.outEstablishConnection, pcd31113, pcd31113.inEstablishConnection)); toReturn.add(new Connection(pcd31113, pcd31113.outMetData, mediatorPcd13, mediatorPcd13.inMetData)); toReturn.add(new Connection(mediatorPcd13, mediatorPcd13.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31114, pcd31114.outCoordinatePCD, mediatorPcd14, mediatorPcd14.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd14, mediatorPcd14.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd14, mediatorPcd14.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd14, mediatorPcd14.outEstablishConnection, pcd31114, pcd31114.inEstablishConnection)); toReturn.add(new Connection(pcd31114, pcd31114.outMetData, mediatorPcd14, mediatorPcd14.inMetData)); toReturn.add(new Connection(mediatorPcd14, mediatorPcd14.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31115, pcd31115.outCoordinatePCD, mediatorPcd15, mediatorPcd15.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd15, mediatorPcd15.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd15, mediatorPcd15.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd15, mediatorPcd15.outEstablishConnection, pcd31115, pcd31115.inEstablishConnection)); toReturn.add(new Connection(pcd31115, pcd31115.outMetData, mediatorPcd15, mediatorPcd15.inMetData)); toReturn.add(new Connection(mediatorPcd15, mediatorPcd15.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31116, pcd31116.outCoordinatePCD, mediatorPcd16, mediatorPcd16.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd16, mediatorPcd16.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd16, mediatorPcd16.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd16, mediatorPcd16.outEstablishConnection, pcd31116, pcd31116.inEstablishConnection)); toReturn.add(new Connection(pcd31116, pcd31116.outMetData, mediatorPcd16, mediatorPcd16.inMetData)); toReturn.add(new Connection(mediatorPcd16, mediatorPcd16.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31117, pcd31117.outCoordinatePCD, mediatorPcd17, mediatorPcd17.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd17, mediatorPcd17.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd17, mediatorPcd17.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd17, mediatorPcd17.outEstablishConnection, pcd31117, pcd31117.inEstablishConnection)); toReturn.add(new Connection(pcd31117, pcd31117.outMetData, mediatorPcd17, mediatorPcd17.inMetData)); toReturn.add(new Connection(mediatorPcd17, mediatorPcd17.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31118, pcd31118.outCoordinatePCD, mediatorPcd18, mediatorPcd18.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd18, mediatorPcd18.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd18, mediatorPcd18.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd18, mediatorPcd18.outEstablishConnection, pcd31118, pcd31118.inEstablishConnection)); toReturn.add(new Connection(pcd31118, pcd31118.outMetData, mediatorPcd18, mediatorPcd18.inMetData)); toReturn.add(new Connection(mediatorPcd18, mediatorPcd18.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31119, pcd31119.outCoordinatePCD, mediatorPcd19, mediatorPcd19.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd19, mediatorPcd19.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd19, mediatorPcd19.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd19, mediatorPcd19.outEstablishConnection, pcd31119, pcd31119.inEstablishConnection)); toReturn.add(new Connection(pcd31119, pcd31119.outMetData, mediatorPcd19, mediatorPcd19.inMetData)); toReturn.add(new Connection(mediatorPcd19, mediatorPcd19.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31132, pcd31132.outCoordinatePCD, mediatorPcd20, mediatorPcd20.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd20, mediatorPcd20.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd20, mediatorPcd20.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd20, mediatorPcd20.outEstablishConnection, pcd31132, pcd31132.inEstablishConnection)); toReturn.add(new Connection(pcd31132, pcd31132.outMetData, mediatorPcd20, mediatorPcd20.inMetData)); toReturn.add(new Connection(mediatorPcd20, mediatorPcd20.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31709, pcd31709.outCoordinatePCD, mediatorPcd21, mediatorPcd21.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd21, mediatorPcd21.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd21, mediatorPcd21.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd21, mediatorPcd21.outEstablishConnection, pcd31709, pcd31709.inEstablishConnection)); toReturn.add(new Connection(pcd31709, pcd31709.outMetData, mediatorPcd21, mediatorPcd21.inMetData)); toReturn.add(new Connection(mediatorPcd21, mediatorPcd21.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31770, pcd31770.outCoordinatePCD, mediatorPcd22, mediatorPcd22.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd22, mediatorPcd22.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd22, mediatorPcd22.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd22, mediatorPcd22.outEstablishConnection, pcd31770, pcd31770.inEstablishConnection)); toReturn.add(new Connection(pcd31770, pcd31770.outMetData, mediatorPcd22, mediatorPcd22.inMetData)); toReturn.add(new Connection(mediatorPcd22, mediatorPcd22.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31804, pcd31804.outCoordinatePCD, mediatorPcd23, mediatorPcd23.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd23, mediatorPcd23.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd23, mediatorPcd23.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd23, mediatorPcd23.outEstablishConnection, pcd31804, pcd31804.inEstablishConnection)); toReturn.add(new Connection(pcd31804, pcd31804.outMetData, mediatorPcd23, mediatorPcd23.inMetData)); toReturn.add(new Connection(mediatorPcd23, mediatorPcd23.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31805, pcd31805.outCoordinatePCD, mediatorPcd24, mediatorPcd24.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd24, mediatorPcd24.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd24, mediatorPcd24.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd24, mediatorPcd24.outEstablishConnection, pcd31805, pcd31805.inEstablishConnection)); toReturn.add(new Connection(pcd31805, pcd31805.outMetData, mediatorPcd24, mediatorPcd24.inMetData)); toReturn.add(new Connection(mediatorPcd24, mediatorPcd24.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31807, pcd31807.outCoordinatePCD, mediatorPcd25, mediatorPcd25.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd25, mediatorPcd25.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd25, mediatorPcd25.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd25, mediatorPcd25.outEstablishConnection, pcd31807, pcd31807.inEstablishConnection)); toReturn.add(new Connection(pcd31807, pcd31807.outMetData, mediatorPcd25, mediatorPcd25.inMetData)); toReturn.add(new Connection(mediatorPcd25, mediatorPcd25.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31808, pcd31808.outCoordinatePCD, mediatorPcd26, mediatorPcd26.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd26, mediatorPcd26.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd26, mediatorPcd26.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd26, mediatorPcd26.outEstablishConnection, pcd31808, pcd31808.inEstablishConnection)); toReturn.add(new Connection(pcd31808, pcd31808.outMetData, mediatorPcd26, mediatorPcd26.inMetData)); toReturn.add(new Connection(mediatorPcd26, mediatorPcd26.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31809, pcd31809.outCoordinatePCD, mediatorPcd27, mediatorPcd27.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd27, mediatorPcd27.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd27, mediatorPcd27.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd27, mediatorPcd27.outEstablishConnection, pcd31809, pcd31809.inEstablishConnection)); toReturn.add(new Connection(pcd31809, pcd31809.outMetData, mediatorPcd27, mediatorPcd27.inMetData)); toReturn.add(new Connection(mediatorPcd27, mediatorPcd27.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31810, pcd31810.outCoordinatePCD, mediatorPcd28, mediatorPcd28.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd28, mediatorPcd28.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd28, mediatorPcd28.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd28, mediatorPcd28.outEstablishConnection, pcd31810, pcd31810.inEstablishConnection)); toReturn.add(new Connection(pcd31810, pcd31810.outMetData, mediatorPcd28, mediatorPcd28.inMetData)); toReturn.add(new Connection(mediatorPcd28, mediatorPcd28.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31811, pcd31811.outCoordinatePCD, mediatorPcd29, mediatorPcd29.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd29, mediatorPcd29.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd29, mediatorPcd29.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd29, mediatorPcd29.outEstablishConnection, pcd31811, pcd31811.inEstablishConnection)); toReturn.add(new Connection(pcd31811, pcd31811.outMetData, mediatorPcd29, mediatorPcd29.inMetData)); toReturn.add(new Connection(mediatorPcd29, mediatorPcd29.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31812, pcd31812.outCoordinatePCD, mediatorPcd30, mediatorPcd30.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd30, mediatorPcd30.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd30, mediatorPcd30.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd30, mediatorPcd30.outEstablishConnection, pcd31812, pcd31812.inEstablishConnection)); toReturn.add(new Connection(pcd31812, pcd31812.outMetData, mediatorPcd30, mediatorPcd30.inMetData)); toReturn.add(new Connection(mediatorPcd30, mediatorPcd30.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31814, pcd31814.outCoordinatePCD, mediatorPcd31, mediatorPcd31.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd31, mediatorPcd31.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd31, mediatorPcd31.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd31, mediatorPcd31.outEstablishConnection, pcd31814, pcd31814.inEstablishConnection)); toReturn.add(new Connection(pcd31814, pcd31814.outMetData, mediatorPcd31, mediatorPcd31.inMetData)); toReturn.add(new Connection(mediatorPcd31, mediatorPcd31.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31817, pcd31817.outCoordinatePCD, mediatorPcd32, mediatorPcd32.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd32, mediatorPcd32.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd32, mediatorPcd32.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd32, mediatorPcd32.outEstablishConnection, pcd31817, pcd31817.inEstablishConnection)); toReturn.add(new Connection(pcd31817, pcd31817.outMetData, mediatorPcd32, mediatorPcd32.inMetData)); toReturn.add(new Connection(mediatorPcd32, mediatorPcd32.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31819, pcd31819.outCoordinatePCD, mediatorPcd33, mediatorPcd33.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd33, mediatorPcd33.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd33, mediatorPcd33.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd33, mediatorPcd33.outEstablishConnection, pcd31819, pcd31819.inEstablishConnection)); toReturn.add(new Connection(pcd31819, pcd31819.outMetData, mediatorPcd33, mediatorPcd33.inMetData)); toReturn.add(new Connection(mediatorPcd33, mediatorPcd33.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31820, pcd31820.outCoordinatePCD, mediatorPcd34, mediatorPcd34.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd34, mediatorPcd34.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd34, mediatorPcd34.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd34, mediatorPcd34.outEstablishConnection, pcd31820, pcd31820.inEstablishConnection)); toReturn.add(new Connection(pcd31820, pcd31820.outMetData, mediatorPcd34, mediatorPcd34.inMetData)); toReturn.add(new Connection(mediatorPcd34, mediatorPcd34.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31821, pcd31821.outCoordinatePCD, mediatorPcd35, mediatorPcd35.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd35, mediatorPcd35.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd35, mediatorPcd35.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd35, mediatorPcd35.outEstablishConnection, pcd31821, pcd31821.inEstablishConnection)); toReturn.add(new Connection(pcd31821, pcd31821.outMetData, mediatorPcd35, mediatorPcd35.inMetData)); toReturn.add(new Connection(mediatorPcd35, mediatorPcd35.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31822, pcd31822.outCoordinatePCD, mediatorPcd36, mediatorPcd36.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd36, mediatorPcd36.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd36, mediatorPcd36.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd36, mediatorPcd36.outEstablishConnection, pcd31822, pcd31822.inEstablishConnection)); toReturn.add(new Connection(pcd31822, pcd31822.outMetData, mediatorPcd36, mediatorPcd36.inMetData)); toReturn.add(new Connection(mediatorPcd36, mediatorPcd36.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31824, pcd31824.outCoordinatePCD, mediatorPcd37, mediatorPcd37.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd37, mediatorPcd37.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd37, mediatorPcd37.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd37, mediatorPcd37.outEstablishConnection, pcd31824, pcd31824.inEstablishConnection)); toReturn.add(new Connection(pcd31824, pcd31824.outMetData, mediatorPcd37, mediatorPcd37.inMetData)); toReturn.add(new Connection(mediatorPcd37, mediatorPcd37.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31826, pcd31826.outCoordinatePCD, mediatorPcd38, mediatorPcd38.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd38, mediatorPcd38.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd38, mediatorPcd38.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd38, mediatorPcd38.outEstablishConnection, pcd31826, pcd31826.inEstablishConnection)); toReturn.add(new Connection(pcd31826, pcd31826.outMetData, mediatorPcd38, mediatorPcd38.inMetData)); toReturn.add(new Connection(mediatorPcd38, mediatorPcd38.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31827, pcd31827.outCoordinatePCD, mediatorPcd39, mediatorPcd39.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd39, mediatorPcd39.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd39, mediatorPcd39.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd39, mediatorPcd39.outEstablishConnection, pcd31827, pcd31827.inEstablishConnection)); toReturn.add(new Connection(pcd31827, pcd31827.outMetData, mediatorPcd39, mediatorPcd39.inMetData)); toReturn.add(new Connection(mediatorPcd39, mediatorPcd39.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31828, pcd31828.outCoordinatePCD, mediatorPcd40, mediatorPcd40.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd40, mediatorPcd40.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd40, mediatorPcd40.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd40, mediatorPcd40.outEstablishConnection, pcd31828, pcd31828.inEstablishConnection)); toReturn.add(new Connection(pcd31828, pcd31828.outMetData, mediatorPcd40, mediatorPcd40.inMetData)); toReturn.add(new Connection(mediatorPcd40, mediatorPcd40.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31829, pcd31829.outCoordinatePCD, mediatorPcd41, mediatorPcd41.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd41, mediatorPcd41.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd41, mediatorPcd41.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd41, mediatorPcd41.outEstablishConnection, pcd31829, pcd31829.inEstablishConnection)); toReturn.add(new Connection(pcd31829, pcd31829.outMetData, mediatorPcd41, mediatorPcd41.inMetData)); toReturn.add(new Connection(mediatorPcd41, mediatorPcd41.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31830, pcd31830.outCoordinatePCD, mediatorPcd42, mediatorPcd42.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd42, mediatorPcd42.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd42, mediatorPcd42.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd42, mediatorPcd42.outEstablishConnection, pcd31830, pcd31830.inEstablishConnection)); toReturn.add(new Connection(pcd31830, pcd31830.outMetData, mediatorPcd42, mediatorPcd42.inMetData)); toReturn.add(new Connection(mediatorPcd42, mediatorPcd42.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31834, pcd31834.outCoordinatePCD, mediatorPcd43, mediatorPcd43.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd43, mediatorPcd43.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd43, mediatorPcd43.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd43, mediatorPcd43.outEstablishConnection, pcd31834, pcd31834.inEstablishConnection)); toReturn.add(new Connection(pcd31834, pcd31834.outMetData, mediatorPcd43, mediatorPcd43.inMetData)); toReturn.add(new Connection(mediatorPcd43, mediatorPcd43.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31835, pcd31835.outCoordinatePCD, mediatorPcd44, mediatorPcd44.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd44, mediatorPcd44.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd44, mediatorPcd44.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd44, mediatorPcd44.outEstablishConnection, pcd31835, pcd31835.inEstablishConnection)); toReturn.add(new Connection(pcd31835, pcd31835.outMetData, mediatorPcd44, mediatorPcd44.inMetData)); toReturn.add(new Connection(mediatorPcd44, mediatorPcd44.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31836, pcd31836.outCoordinatePCD, mediatorPcd45, mediatorPcd45.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd45, mediatorPcd45.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd45, mediatorPcd45.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd45, mediatorPcd45.outEstablishConnection, pcd31836, pcd31836.inEstablishConnection)); toReturn.add(new Connection(pcd31836, pcd31836.outMetData, mediatorPcd45, mediatorPcd45.inMetData)); toReturn.add(new Connection(mediatorPcd45, mediatorPcd45.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31837, pcd31837.outCoordinatePCD, mediatorPcd46, mediatorPcd46.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd46, mediatorPcd46.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd46, mediatorPcd46.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd46, mediatorPcd46.outEstablishConnection, pcd31837, pcd31837.inEstablishConnection)); toReturn.add(new Connection(pcd31837, pcd31837.outMetData, mediatorPcd46, mediatorPcd46.inMetData)); toReturn.add(new Connection(mediatorPcd46, mediatorPcd46.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31839, pcd31839.outCoordinatePCD, mediatorPcd47, mediatorPcd47.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd47, mediatorPcd47.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd47, mediatorPcd47.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd47, mediatorPcd47.outEstablishConnection, pcd31839, pcd31839.inEstablishConnection)); toReturn.add(new Connection(pcd31839, pcd31839.outMetData, mediatorPcd47, mediatorPcd47.inMetData)); toReturn.add(new Connection(mediatorPcd47, mediatorPcd47.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31841, pcd31841.outCoordinatePCD, mediatorPcd48, mediatorPcd48.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd48, mediatorPcd48.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd48, mediatorPcd48.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd48, mediatorPcd48.outEstablishConnection, pcd31841, pcd31841.inEstablishConnection)); toReturn.add(new Connection(pcd31841, pcd31841.outMetData, mediatorPcd48, mediatorPcd48.inMetData)); toReturn.add(new Connection(mediatorPcd48, mediatorPcd48.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31842, pcd31842.outCoordinatePCD, mediatorPcd49, mediatorPcd49.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd49, mediatorPcd49.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd49, mediatorPcd49.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd49, mediatorPcd49.outEstablishConnection, pcd31842, pcd31842.inEstablishConnection)); toReturn.add(new Connection(pcd31842, pcd31842.outMetData, mediatorPcd49, mediatorPcd49.inMetData)); toReturn.add(new Connection(mediatorPcd49, mediatorPcd49.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31844, pcd31844.outCoordinatePCD, mediatorPcd50, mediatorPcd50.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd50, mediatorPcd50.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd50, mediatorPcd50.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd50, mediatorPcd50.outEstablishConnection, pcd31844, pcd31844.inEstablishConnection)); toReturn.add(new Connection(pcd31844, pcd31844.outMetData, mediatorPcd50, mediatorPcd50.inMetData)); toReturn.add(new Connection(mediatorPcd50, mediatorPcd50.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31845, pcd31845.outCoordinatePCD, mediatorPcd51, mediatorPcd51.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd51, mediatorPcd51.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd51, mediatorPcd51.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd51, mediatorPcd51.outEstablishConnection, pcd31845, pcd31845.inEstablishConnection)); toReturn.add(new Connection(pcd31845, pcd31845.outMetData, mediatorPcd51, mediatorPcd51.inMetData)); toReturn.add(new Connection(mediatorPcd51, mediatorPcd51.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31847, pcd31847.outCoordinatePCD, mediatorPcd52, mediatorPcd52.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd52, mediatorPcd52.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd52, mediatorPcd52.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd52, mediatorPcd52.outEstablishConnection, pcd31847, pcd31847.inEstablishConnection)); toReturn.add(new Connection(pcd31847, pcd31847.outMetData, mediatorPcd52, mediatorPcd52.inMetData)); toReturn.add(new Connection(mediatorPcd52, mediatorPcd52.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31848, pcd31848.outCoordinatePCD, mediatorPcd53, mediatorPcd53.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd53, mediatorPcd53.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd53, mediatorPcd53.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd53, mediatorPcd53.outEstablishConnection, pcd31848, pcd31848.inEstablishConnection)); toReturn.add(new Connection(pcd31848, pcd31848.outMetData, mediatorPcd53, mediatorPcd53.inMetData)); toReturn.add(new Connection(mediatorPcd53, mediatorPcd53.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31849, pcd31849.outCoordinatePCD, mediatorPcd54, mediatorPcd54.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd54, mediatorPcd54.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd54, mediatorPcd54.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd54, mediatorPcd54.outEstablishConnection, pcd31849, pcd31849.inEstablishConnection)); toReturn.add(new Connection(pcd31849, pcd31849.outMetData, mediatorPcd54, mediatorPcd54.inMetData)); toReturn.add(new Connection(mediatorPcd54, mediatorPcd54.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31851, pcd31851.outCoordinatePCD, mediatorPcd55, mediatorPcd55.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd55, mediatorPcd55.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd55, mediatorPcd55.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd55, mediatorPcd55.outEstablishConnection, pcd31851, pcd31851.inEstablishConnection)); toReturn.add(new Connection(pcd31851, pcd31851.outMetData, mediatorPcd55, mediatorPcd55.inMetData)); toReturn.add(new Connection(mediatorPcd55, mediatorPcd55.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31852, pcd31852.outCoordinatePCD, mediatorPcd56, mediatorPcd56.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd56, mediatorPcd56.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd56, mediatorPcd56.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd56, mediatorPcd56.outEstablishConnection, pcd31852, pcd31852.inEstablishConnection)); toReturn.add(new Connection(pcd31852, pcd31852.outMetData, mediatorPcd56, mediatorPcd56.inMetData)); toReturn.add(new Connection(mediatorPcd56, mediatorPcd56.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31853, pcd31853.outCoordinatePCD, mediatorPcd57, mediatorPcd57.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd57, mediatorPcd57.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd57, mediatorPcd57.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd57, mediatorPcd57.outEstablishConnection, pcd31853, pcd31853.inEstablishConnection)); toReturn.add(new Connection(pcd31853, pcd31853.outMetData, mediatorPcd57, mediatorPcd57.inMetData)); toReturn.add(new Connection(mediatorPcd57, mediatorPcd57.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31854, pcd31854.outCoordinatePCD, mediatorPcd58, mediatorPcd58.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd58, mediatorPcd58.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd58, mediatorPcd58.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd58, mediatorPcd58.outEstablishConnection, pcd31854, pcd31854.inEstablishConnection)); toReturn.add(new Connection(pcd31854, pcd31854.outMetData, mediatorPcd58, mediatorPcd58.inMetData)); toReturn.add(new Connection(mediatorPcd58, mediatorPcd58.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31856, pcd31856.outCoordinatePCD, mediatorPcd59, mediatorPcd59.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd59, mediatorPcd59.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd59, mediatorPcd59.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd59, mediatorPcd59.outEstablishConnection, pcd31856, pcd31856.inEstablishConnection)); toReturn.add(new Connection(pcd31856, pcd31856.outMetData, mediatorPcd59, mediatorPcd59.inMetData)); toReturn.add(new Connection(mediatorPcd59, mediatorPcd59.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd31858, pcd31858.outCoordinatePCD, mediatorPcd60, mediatorPcd60.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd60, mediatorPcd60.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd60, mediatorPcd60.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd60, mediatorPcd60.outEstablishConnection, pcd31858, pcd31858.inEstablishConnection)); toReturn.add(new Connection(pcd31858, pcd31858.outMetData, mediatorPcd60, mediatorPcd60.inMetData)); toReturn.add(new Connection(mediatorPcd60, mediatorPcd60.outMetData, satellite, satellite.inMetData)); toReturn.add(new Connection(pcd32534, pcd32534.outCoordinatePCD, mediatorPcd134, mediatorPcd134.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd134, mediatorPcd134.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd134, mediatorPcd134.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd134, mediatorPcd134.outEstablishConnection, pcd32534, pcd32534.inEstablishConnection)); toReturn.add(new Connection(pcd32534, pcd32534.outQaguaData, mediatorPcd134, mediatorPcd134.inQaguaData)); toReturn.add(new Connection(mediatorPcd134, mediatorPcd134.outQaguaData, satellite, satellite.inQaguaData)); toReturn.add(new Connection(pcd32537, pcd32537.outCoordinatePCD, mediatorPcd135, mediatorPcd135.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd135, mediatorPcd135.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd135, mediatorPcd135.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd135, mediatorPcd135.outEstablishConnection, pcd32537, pcd32537.inEstablishConnection)); toReturn.add(new Connection(pcd32537, pcd32537.outQaguaData, mediatorPcd135, mediatorPcd135.inQaguaData)); toReturn.add(new Connection(mediatorPcd135, mediatorPcd135.outQaguaData, satellite, satellite.inQaguaData)); toReturn.add(new Connection(pcd32539, pcd32539.outCoordinatePCD, mediatorPcd136, mediatorPcd136.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd136, mediatorPcd136.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd136, mediatorPcd136.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd136, mediatorPcd136.outEstablishConnection, pcd32539, pcd32539.inEstablishConnection)); toReturn.add(new Connection(pcd32539, pcd32539.outQaguaData, mediatorPcd136, mediatorPcd136.inQaguaData)); toReturn.add(new Connection(mediatorPcd136, mediatorPcd136.outQaguaData, satellite, satellite.inQaguaData)); toReturn.add(new Connection(pcd32539, pcd32539.outCoordinatePCD, mediatorPcd136, mediatorPcd136.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd136, mediatorPcd136.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd136, mediatorPcd136.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd136, mediatorPcd136.outEstablishConnection, pcd32539, pcd32539.inEstablishConnection)); toReturn.add(new Connection(pcd32539, pcd32539.outQaguaData, mediatorPcd136, mediatorPcd136.inQaguaData)); toReturn.add(new Connection(mediatorPcd136, mediatorPcd136.outQaguaData, satellite, satellite.inQaguaData)); toReturn.add(new Connection(pcd32539, pcd32539.outCoordinatePCD, mediatorPcd136, mediatorPcd136.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd136, mediatorPcd136.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd136, mediatorPcd136.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd136, mediatorPcd136.outEstablishConnection, pcd32539, pcd32539.inEstablishConnection)); toReturn.add(new Connection(pcd32539, pcd32539.outQaguaData, mediatorPcd136, mediatorPcd136.inQaguaData)); toReturn.add(new Connection(mediatorPcd136, mediatorPcd136.outQaguaData, satellite, satellite.inQaguaData)); toReturn.add(new Connection(pcd30900, pcd30900.outCoordinatePCD, mediatorPcd137, mediatorPcd137.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd137, mediatorPcd137.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd137, mediatorPcd137.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd137, mediatorPcd137.outEstablishConnection, pcd30900, pcd30900.inEstablishConnection)); toReturn.add(new Connection(pcd30900, pcd30900.outHidroData, mediatorPcd137, mediatorPcd137.inHidroData)); toReturn.add(new Connection(mediatorPcd137, mediatorPcd137.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd30901, pcd30901.outCoordinatePCD, mediatorPcd138, mediatorPcd138.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd138, mediatorPcd138.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd138, mediatorPcd138.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd138, mediatorPcd138.outEstablishConnection, pcd30901, pcd30901.inEstablishConnection)); toReturn.add(new Connection(pcd30901, pcd30901.outHidroData, mediatorPcd138, mediatorPcd138.inHidroData)); toReturn.add(new Connection(mediatorPcd138, mediatorPcd138.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd30960, pcd30960.outCoordinatePCD, mediatorPcd139, mediatorPcd139.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd139, mediatorPcd139.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd139, mediatorPcd139.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd139, mediatorPcd139.outEstablishConnection, pcd30960, pcd30960.inEstablishConnection)); toReturn.add(new Connection(pcd30960, pcd30960.outHidroData, mediatorPcd139, mediatorPcd139.inHidroData)); toReturn.add(new Connection(mediatorPcd139, mediatorPcd139.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31020, pcd31020.outCoordinatePCD, mediatorPcd140, mediatorPcd140.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd140, mediatorPcd140.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd140, mediatorPcd140.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd140, mediatorPcd140.outEstablishConnection, pcd31020, pcd31020.inEstablishConnection)); toReturn.add(new Connection(pcd31020, pcd31020.outHidroData, mediatorPcd140, mediatorPcd140.inHidroData)); toReturn.add(new Connection(mediatorPcd140, mediatorPcd140.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31021, pcd31021.outCoordinatePCD, mediatorPcd141, mediatorPcd141.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd141, mediatorPcd141.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd141, mediatorPcd141.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd141, mediatorPcd141.outEstablishConnection, pcd31021, pcd31021.inEstablishConnection)); toReturn.add(new Connection(pcd31021, pcd31021.outHidroData, mediatorPcd141, mediatorPcd141.inHidroData)); toReturn.add(new Connection(mediatorPcd141, mediatorPcd141.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31023, pcd31023.outCoordinatePCD, mediatorPcd142, mediatorPcd142.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd142, mediatorPcd142.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd142, mediatorPcd142.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd142, mediatorPcd142.outEstablishConnection, pcd31023, pcd31023.inEstablishConnection)); toReturn.add(new Connection(pcd31023, pcd31023.outHidroData, mediatorPcd142, mediatorPcd142.inHidroData)); toReturn.add(new Connection(mediatorPcd142, mediatorPcd142.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31025, pcd31025.outCoordinatePCD, mediatorPcd143, mediatorPcd143.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd143, mediatorPcd143.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd143, mediatorPcd143.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd143, mediatorPcd143.outEstablishConnection, pcd31025, pcd31025.inEstablishConnection)); toReturn.add(new Connection(pcd31025, pcd31025.outHidroData, mediatorPcd143, mediatorPcd143.inHidroData)); toReturn.add(new Connection(mediatorPcd143, mediatorPcd143.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31029, pcd31029.outCoordinatePCD, mediatorPcd144, mediatorPcd144.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd144, mediatorPcd144.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd144, mediatorPcd144.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd144, mediatorPcd144.outEstablishConnection, pcd31029, pcd31029.inEstablishConnection)); toReturn.add(new Connection(pcd31029, pcd31029.outHidroData, mediatorPcd144, mediatorPcd144.inHidroData)); toReturn.add(new Connection(mediatorPcd144, mediatorPcd144.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31071, pcd31071.outCoordinatePCD, mediatorPcd145, mediatorPcd145.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd145, mediatorPcd145.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd145, mediatorPcd145.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd145, mediatorPcd145.outEstablishConnection, pcd31071, pcd31071.inEstablishConnection)); toReturn.add(new Connection(pcd31071, pcd31071.outHidroData, mediatorPcd145, mediatorPcd145.inHidroData)); toReturn.add(new Connection(mediatorPcd145, mediatorPcd145.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31074, pcd31074.outCoordinatePCD, mediatorPcd146, mediatorPcd146.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd146, mediatorPcd146.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd146, mediatorPcd146.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd146, mediatorPcd146.outEstablishConnection, pcd31074, pcd31074.inEstablishConnection)); toReturn.add(new Connection(pcd31074, pcd31074.outHidroData, mediatorPcd146, mediatorPcd146.inHidroData)); toReturn.add(new Connection(mediatorPcd146, mediatorPcd146.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31075, pcd31075.outCoordinatePCD, mediatorPcd147, mediatorPcd147.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd147, mediatorPcd147.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd147, mediatorPcd147.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd147, mediatorPcd147.outEstablishConnection, pcd31075, pcd31075.inEstablishConnection)); toReturn.add(new Connection(pcd31075, pcd31075.outHidroData, mediatorPcd147, mediatorPcd147.inHidroData)); toReturn.add(new Connection(mediatorPcd147, mediatorPcd147.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31077, pcd31077.outCoordinatePCD, mediatorPcd148, mediatorPcd148.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd148, mediatorPcd148.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd148, mediatorPcd148.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd148, mediatorPcd148.outEstablishConnection, pcd31077, pcd31077.inEstablishConnection)); toReturn.add(new Connection(pcd31077, pcd31077.outHidroData, mediatorPcd148, mediatorPcd148.inHidroData)); toReturn.add(new Connection(mediatorPcd148, mediatorPcd148.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31078, pcd31078.outCoordinatePCD, mediatorPcd149, mediatorPcd149.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd149, mediatorPcd149.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd149, mediatorPcd149.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd149, mediatorPcd149.outEstablishConnection, pcd31078, pcd31078.inEstablishConnection)); toReturn.add(new Connection(pcd31078, pcd31078.outHidroData, mediatorPcd149, mediatorPcd149.inHidroData)); toReturn.add(new Connection(mediatorPcd149, mediatorPcd149.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31079, pcd31079.outCoordinatePCD, mediatorPcd150, mediatorPcd150.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd150, mediatorPcd150.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd150, mediatorPcd150.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd150, mediatorPcd150.outEstablishConnection, pcd31079, pcd31079.inEstablishConnection)); toReturn.add(new Connection(pcd31079, pcd31079.outHidroData, mediatorPcd150, mediatorPcd150.inHidroData)); toReturn.add(new Connection(mediatorPcd150, mediatorPcd150.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31081, pcd31081.outCoordinatePCD, mediatorPcd151, mediatorPcd151.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd151, mediatorPcd151.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd151, mediatorPcd151.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd151, mediatorPcd151.outEstablishConnection, pcd31081, pcd31081.inEstablishConnection)); toReturn.add(new Connection(pcd31081, pcd31081.outHidroData, mediatorPcd151, mediatorPcd151.inHidroData)); toReturn.add(new Connection(mediatorPcd151, mediatorPcd151.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31082, pcd31082.outCoordinatePCD, mediatorPcd152, mediatorPcd152.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd152, mediatorPcd152.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd152, mediatorPcd152.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd152, mediatorPcd152.outEstablishConnection, pcd31082, pcd31082.inEstablishConnection)); toReturn.add(new Connection(pcd31082, pcd31082.outHidroData, mediatorPcd152, mediatorPcd152.inHidroData)); toReturn.add(new Connection(mediatorPcd152, mediatorPcd152.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31085, pcd31085.outCoordinatePCD, mediatorPcd153, mediatorPcd153.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd153, mediatorPcd153.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd153, mediatorPcd153.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd153, mediatorPcd153.outEstablishConnection, pcd31085, pcd31085.inEstablishConnection)); toReturn.add(new Connection(pcd31085, pcd31085.outHidroData, mediatorPcd153, mediatorPcd153.inHidroData)); toReturn.add(new Connection(mediatorPcd153, mediatorPcd153.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31086, pcd31086.outCoordinatePCD, mediatorPcd154, mediatorPcd154.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd154, mediatorPcd154.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd154, mediatorPcd154.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd154, mediatorPcd154.outEstablishConnection, pcd31086, pcd31086.inEstablishConnection)); toReturn.add(new Connection(pcd31086, pcd31086.outHidroData, mediatorPcd154, mediatorPcd154.inHidroData)); toReturn.add(new Connection(mediatorPcd154, mediatorPcd154.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31088, pcd31088.outCoordinatePCD, mediatorPcd155, mediatorPcd155.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd155, mediatorPcd155.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd155, mediatorPcd155.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd155, mediatorPcd155.outEstablishConnection, pcd31088, pcd31088.inEstablishConnection)); toReturn.add(new Connection(pcd31088, pcd31088.outHidroData, mediatorPcd155, mediatorPcd155.inHidroData)); toReturn.add(new Connection(mediatorPcd155, mediatorPcd155.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31089, pcd31089.outCoordinatePCD, mediatorPcd156, mediatorPcd156.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd156, mediatorPcd156.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd156, mediatorPcd156.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd156, mediatorPcd156.outEstablishConnection, pcd31089, pcd31089.inEstablishConnection)); toReturn.add(new Connection(pcd31089, pcd31089.outHidroData, mediatorPcd156, mediatorPcd156.inHidroData)); toReturn.add(new Connection(mediatorPcd156, mediatorPcd156.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31090, pcd31090.outCoordinatePCD, mediatorPcd157, mediatorPcd157.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd157, mediatorPcd157.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd157, mediatorPcd157.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd157, mediatorPcd157.outEstablishConnection, pcd31090, pcd31090.inEstablishConnection)); toReturn.add(new Connection(pcd31090, pcd31090.outHidroData, mediatorPcd157, mediatorPcd157.inHidroData)); toReturn.add(new Connection(mediatorPcd157, mediatorPcd157.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31091, pcd31091.outCoordinatePCD, mediatorPcd158, mediatorPcd158.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd158, mediatorPcd158.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd158, mediatorPcd158.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd158, mediatorPcd158.outEstablishConnection, pcd31091, pcd31091.inEstablishConnection)); toReturn.add(new Connection(pcd31091, pcd31091.outHidroData, mediatorPcd158, mediatorPcd158.inHidroData)); toReturn.add(new Connection(mediatorPcd158, mediatorPcd158.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31092, pcd31092.outCoordinatePCD, mediatorPcd159, mediatorPcd159.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd159, mediatorPcd159.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd159, mediatorPcd159.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd159, mediatorPcd159.outEstablishConnection, pcd31092, pcd31092.inEstablishConnection)); toReturn.add(new Connection(pcd31092, pcd31092.outHidroData, mediatorPcd159, mediatorPcd159.inHidroData)); toReturn.add(new Connection(mediatorPcd159, mediatorPcd159.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31093, pcd31093.outCoordinatePCD, mediatorPcd160, mediatorPcd160.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd160, mediatorPcd160.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd160, mediatorPcd160.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd160, mediatorPcd160.outEstablishConnection, pcd31093, pcd31093.inEstablishConnection)); toReturn.add(new Connection(pcd31093, pcd31093.outHidroData, mediatorPcd160, mediatorPcd160.inHidroData)); toReturn.add(new Connection(mediatorPcd160, mediatorPcd160.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31094, pcd31094.outCoordinatePCD, mediatorPcd161, mediatorPcd161.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd161, mediatorPcd161.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd161, mediatorPcd161.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd161, mediatorPcd161.outEstablishConnection, pcd31094, pcd31094.inEstablishConnection)); toReturn.add(new Connection(pcd31094, pcd31094.outHidroData, mediatorPcd161, mediatorPcd161.inHidroData)); toReturn.add(new Connection(mediatorPcd161, mediatorPcd161.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31095, pcd31095.outCoordinatePCD, mediatorPcd162, mediatorPcd162.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd162, mediatorPcd162.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd162, mediatorPcd162.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd162, mediatorPcd162.outEstablishConnection, pcd31095, pcd31095.inEstablishConnection)); toReturn.add(new Connection(pcd31095, pcd31095.outHidroData, mediatorPcd162, mediatorPcd162.inHidroData)); toReturn.add(new Connection(mediatorPcd162, mediatorPcd162.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31096, pcd31096.outCoordinatePCD, mediatorPcd163, mediatorPcd163.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd163, mediatorPcd163.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd163, mediatorPcd163.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd163, mediatorPcd163.outEstablishConnection, pcd31096, pcd31096.inEstablishConnection)); toReturn.add(new Connection(pcd31096, pcd31096.outHidroData, mediatorPcd163, mediatorPcd163.inHidroData)); toReturn.add(new Connection(mediatorPcd163, mediatorPcd163.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31097, pcd31097.outCoordinatePCD, mediatorPcd164, mediatorPcd164.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd164, mediatorPcd164.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd164, mediatorPcd164.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd164, mediatorPcd164.outEstablishConnection, pcd31097, pcd31097.inEstablishConnection)); toReturn.add(new Connection(pcd31097, pcd31097.outHidroData, mediatorPcd164, mediatorPcd164.inHidroData)); toReturn.add(new Connection(mediatorPcd164, mediatorPcd164.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31098, pcd31098.outCoordinatePCD, mediatorPcd165, mediatorPcd165.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd165, mediatorPcd165.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd165, mediatorPcd165.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd165, mediatorPcd165.outEstablishConnection, pcd31098, pcd31098.inEstablishConnection)); toReturn.add(new Connection(pcd31098, pcd31098.outHidroData, mediatorPcd165, mediatorPcd165.inHidroData)); toReturn.add(new Connection(mediatorPcd165, mediatorPcd165.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31099, pcd31099.outCoordinatePCD, mediatorPcd166, mediatorPcd166.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd166, mediatorPcd166.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd166, mediatorPcd166.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd166, mediatorPcd166.outEstablishConnection, pcd31099, pcd31099.inEstablishConnection)); toReturn.add(new Connection(pcd31099, pcd31099.outHidroData, mediatorPcd166, mediatorPcd166.inHidroData)); toReturn.add(new Connection(mediatorPcd166, mediatorPcd166.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31100, pcd31100.outCoordinatePCD, mediatorPcd167, mediatorPcd167.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd167, mediatorPcd167.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd167, mediatorPcd167.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd167, mediatorPcd167.outEstablishConnection, pcd31100, pcd31100.inEstablishConnection)); toReturn.add(new Connection(pcd31100, pcd31100.outHidroData, mediatorPcd167, mediatorPcd167.inHidroData)); toReturn.add(new Connection(mediatorPcd167, mediatorPcd167.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31101, pcd31101.outCoordinatePCD, mediatorPcd168, mediatorPcd168.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd168, mediatorPcd168.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd168, mediatorPcd168.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd168, mediatorPcd168.outEstablishConnection, pcd31101, pcd31101.inEstablishConnection)); toReturn.add(new Connection(pcd31101, pcd31101.outHidroData, mediatorPcd168, mediatorPcd168.inHidroData)); toReturn.add(new Connection(mediatorPcd168, mediatorPcd168.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31102, pcd31102.outCoordinatePCD, mediatorPcd169, mediatorPcd169.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd169, mediatorPcd169.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd169, mediatorPcd169.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd169, mediatorPcd169.outEstablishConnection, pcd31102, pcd31102.inEstablishConnection)); toReturn.add(new Connection(pcd31102, pcd31102.outHidroData, mediatorPcd169, mediatorPcd169.inHidroData)); toReturn.add(new Connection(mediatorPcd169, mediatorPcd169.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31764, pcd31764.outCoordinatePCD, mediatorPcd170, mediatorPcd170.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd170, mediatorPcd170.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd170, mediatorPcd170.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd170, mediatorPcd170.outEstablishConnection, pcd31764, pcd31764.inEstablishConnection)); toReturn.add(new Connection(pcd31764, pcd31764.outHidroData, mediatorPcd170, mediatorPcd170.inHidroData)); toReturn.add(new Connection(mediatorPcd170, mediatorPcd170.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31780, pcd31780.outCoordinatePCD, mediatorPcd171, mediatorPcd171.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd171, mediatorPcd171.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd171, mediatorPcd171.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd171, mediatorPcd171.outEstablishConnection, pcd31780, pcd31780.inEstablishConnection)); toReturn.add(new Connection(pcd31780, pcd31780.outHidroData, mediatorPcd171, mediatorPcd171.inHidroData)); toReturn.add(new Connection(mediatorPcd171, mediatorPcd171.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31782, pcd31782.outCoordinatePCD, mediatorPcd172, mediatorPcd172.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd172, mediatorPcd172.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd172, mediatorPcd172.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd172, mediatorPcd172.outEstablishConnection, pcd31782, pcd31782.inEstablishConnection)); toReturn.add(new Connection(pcd31782, pcd31782.outHidroData, mediatorPcd172, mediatorPcd172.inHidroData)); toReturn.add(new Connection(mediatorPcd172, mediatorPcd172.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31783, pcd31783.outCoordinatePCD, mediatorPcd173, mediatorPcd173.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd173, mediatorPcd173.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd173, mediatorPcd173.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd173, mediatorPcd173.outEstablishConnection, pcd31783, pcd31783.inEstablishConnection)); toReturn.add(new Connection(pcd31783, pcd31783.outHidroData, mediatorPcd173, mediatorPcd173.inHidroData)); toReturn.add(new Connection(mediatorPcd173, mediatorPcd173.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31784, pcd31784.outCoordinatePCD, mediatorPcd174, mediatorPcd174.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd174, mediatorPcd174.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd174, mediatorPcd174.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd174, mediatorPcd174.outEstablishConnection, pcd31784, pcd31784.inEstablishConnection)); toReturn.add(new Connection(pcd31784, pcd31784.outHidroData, mediatorPcd174, mediatorPcd174.inHidroData)); toReturn.add(new Connection(mediatorPcd174, mediatorPcd174.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31785, pcd31785.outCoordinatePCD, mediatorPcd175, mediatorPcd175.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd175, mediatorPcd175.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd175, mediatorPcd175.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd175, mediatorPcd175.outEstablishConnection, pcd31785, pcd31785.inEstablishConnection)); toReturn.add(new Connection(pcd31785, pcd31785.outHidroData, mediatorPcd175, mediatorPcd175.inHidroData)); toReturn.add(new Connection(mediatorPcd175, mediatorPcd175.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd31786, pcd31786.outCoordinatePCD, mediatorPcd176, mediatorPcd176.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd176, mediatorPcd176.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd176, mediatorPcd176.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd176, mediatorPcd176.outEstablishConnection, pcd31786, pcd31786.inEstablishConnection)); toReturn.add(new Connection(pcd31786, pcd31786.outHidroData, mediatorPcd176, mediatorPcd176.inHidroData)); toReturn.add(new Connection(mediatorPcd176, mediatorPcd176.outHidroData, satellite, satellite.inHidroData)); toReturn.add(new Connection(pcd30800, pcd30800.outCoordinatePCD, mediatorPcd214, mediatorPcd214.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd214, mediatorPcd214.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd214, mediatorPcd214.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd214, mediatorPcd214.outEstablishConnection, pcd30800, pcd30800.inEstablishConnection)); toReturn.add(new Connection(pcd30800, pcd30800.outAgroData, mediatorPcd214, mediatorPcd214.inAgroData)); toReturn.add(new Connection(mediatorPcd214, mediatorPcd214.outAgroData, satellite, satellite.inAgroData)); toReturn.add(new Connection(pcd30885, pcd30885.outCoordinatePCD, mediatorPcd215, mediatorPcd215.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd215, mediatorPcd215.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd215, mediatorPcd215.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd215, mediatorPcd215.outEstablishConnection, pcd30885, pcd30885.inEstablishConnection)); toReturn.add(new Connection(pcd30885, pcd30885.outAgroData, mediatorPcd215, mediatorPcd215.inAgroData)); toReturn.add(new Connection(mediatorPcd215, mediatorPcd215.outAgroData, satellite, satellite.inAgroData)); toReturn.add(new Connection(pcd30887, pcd30887.outCoordinatePCD, mediatorPcd216, mediatorPcd216.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd216, mediatorPcd216.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd216, mediatorPcd216.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd216, mediatorPcd216.outEstablishConnection, pcd30887, pcd30887.inEstablishConnection)); toReturn.add(new Connection(pcd30887, pcd30887.outAgroData, mediatorPcd216, mediatorPcd216.inAgroData)); toReturn.add(new Connection(mediatorPcd216, mediatorPcd216.outAgroData, satellite, satellite.inAgroData)); toReturn.add(new Connection(pcd30888, pcd30888.outCoordinatePCD, mediatorPcd217, mediatorPcd217.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd217, mediatorPcd217.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd217, mediatorPcd217.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd217, mediatorPcd217.outEstablishConnection, pcd30888, pcd30888.inEstablishConnection)); toReturn.add(new Connection(pcd30888, pcd30888.outAgroData, mediatorPcd217, mediatorPcd217.inAgroData)); toReturn.add(new Connection(mediatorPcd217, mediatorPcd217.outAgroData, satellite, satellite.inAgroData)); toReturn.add(new Connection(pcd30890, pcd30890.outCoordinatePCD, mediatorPcd218, mediatorPcd218.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd218, mediatorPcd218.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd218, mediatorPcd218.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd218, mediatorPcd218.outEstablishConnection, pcd30890, pcd30890.inEstablishConnection)); toReturn.add(new Connection(pcd30890, pcd30890.outAgroData, mediatorPcd218, mediatorPcd218.inAgroData)); toReturn.add(new Connection(mediatorPcd218, mediatorPcd218.outAgroData, satellite, satellite.inAgroData)); toReturn.add(new Connection(pcd30975, pcd30975.outCoordinatePCD, mediatorPcd219, mediatorPcd219.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd219, mediatorPcd219.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd219, mediatorPcd219.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd219, mediatorPcd219.outEstablishConnection, pcd30975, pcd30975.inEstablishConnection)); toReturn.add(new Connection(pcd30975, pcd30975.outAgroData, mediatorPcd219, mediatorPcd219.inAgroData)); toReturn.add(new Connection(mediatorPcd219, mediatorPcd219.outAgroData, satellite, satellite.inAgroData)); toReturn.add(new Connection(pcd31744, pcd31744.outCoordinatePCD, mediatorPcd220, mediatorPcd220.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd220, mediatorPcd220.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd220, mediatorPcd220.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd220, mediatorPcd220.outEstablishConnection, pcd31744, pcd31744.inEstablishConnection)); toReturn.add(new Connection(pcd31744, pcd31744.outAgroData, mediatorPcd220, mediatorPcd220.inAgroData)); toReturn.add(new Connection(mediatorPcd220, mediatorPcd220.outAgroData, satellite, satellite.inAgroData)); toReturn.add(new Connection(pcd31745, pcd31745.outCoordinatePCD, mediatorPcd221, mediatorPcd221.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd221, mediatorPcd221.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd221, mediatorPcd221.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd221, mediatorPcd221.outEstablishConnection, pcd31745, pcd31745.inEstablishConnection)); toReturn.add(new Connection(pcd31745, pcd31745.outAgroData, mediatorPcd221, mediatorPcd221.inAgroData)); toReturn.add(new Connection(mediatorPcd221, mediatorPcd221.outAgroData, satellite, satellite.inAgroData)); toReturn.add(new Connection(pcd31746, pcd31746.outCoordinatePCD, mediatorPcd222, mediatorPcd222.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd222, mediatorPcd222.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd222, mediatorPcd222.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd222, mediatorPcd222.outEstablishConnection, pcd31746, pcd31746.inEstablishConnection)); toReturn.add(new Connection(pcd31746, pcd31746.outAgroData, mediatorPcd222, mediatorPcd222.inAgroData)); toReturn.add(new Connection(mediatorPcd222, mediatorPcd222.outAgroData, satellite, satellite.inAgroData)); toReturn.add(new Connection(pcd31801, pcd31801.outCoordinatePCD, mediatorPcd223, mediatorPcd223.inCoordinatePCD)); toReturn.add(new Connection(satellite, satellite.outCoordinateSatellite, mediatorPcd223, mediatorPcd223.inCoordinateSatellite)); toReturn.add(new Connection(mediatorPcd223, mediatorPcd223.outEstablishConnection, satellite, satellite.inEstablishConnection)); toReturn.add(new Connection(mediatorPcd223, mediatorPcd223.outEstablishConnection, pcd31801, pcd31801.inEstablishConnection)); toReturn.add(new Connection(pcd31801, pcd31801.outAgroData, mediatorPcd223, mediatorPcd223.inAgroData)); toReturn.add(new Connection(mediatorPcd223, mediatorPcd223.outAgroData, satellite, satellite.inAgroData)); return toReturn; } %>! add additional code <% private String getName(AtomicModelImpl a) { if (a instanceof DataCenterCP) { DataCenterCP b = (DataCenterCP) a; return b.getName(); } else if (a instanceof CommandAndControlSJC) { CommandAndControlSJC b = (CommandAndControlSJC) a; return b.getName(); } else if (a instanceof GroundStation) { GroundStation b = (GroundStation) a; return b.getName(); } else if (a instanceof Satellite) { Satellite b = (Satellite) a; return b.getName(); } else if (a instanceof Mediator1) { Mediator1 b = (Mediator1) a; return b.getName(); } else if (a instanceof Mediator2) { Mediator2 b = (Mediator2) a; return b.getName(); } else if (a instanceof Mediator3) { Mediator3 b = (Mediator3) a; return b.getName(); } else if (a instanceof Mediator4) { Mediator4 b = (Mediator4) a; return b.getName(); } else if (a instanceof Pcd30869) { Pcd30869 b = (Pcd30869) a; return b.getName(); } else if (a instanceof Pcd30870) { Pcd30870 b = (Pcd30870) a; return b.getName(); } else if (a instanceof Pcd30871) { Pcd30871 b = (Pcd30871) a; return b.getName(); } else if (a instanceof Pcd30873) { Pcd30873 b = (Pcd30873) a; return b.getName(); } else if (a instanceof Pcd30879) { Pcd30879 b = (Pcd30879) a; return b.getName(); } else if (a instanceof Pcd30881) { Pcd30881 b = (Pcd30881) a; return b.getName(); } else if (a instanceof Pcd30882) { Pcd30882 b = (Pcd30882) a; return b.getName(); } else if (a instanceof Pcd30948) { Pcd30948 b = (Pcd30948) a; return b.getName(); } else if (a instanceof Pcd31000) { Pcd31000 b = (Pcd31000) a; return b.getName(); } else if (a instanceof Pcd31006) { Pcd31006 b = (Pcd31006) a; return b.getName(); } else if (a instanceof Pcd31111) { Pcd31111 b = (Pcd31111) a; return b.getName(); } else if (a instanceof Pcd31112) { Pcd31112 b = (Pcd31112) a; return b.getName(); } else if (a instanceof Pcd31113) { Pcd31113 b = (Pcd31113) a; return b.getName(); } else if (a instanceof Pcd31114) { Pcd31114 b = (Pcd31114) a; return b.getName(); } else if (a instanceof Pcd31115) { Pcd31115 b = (Pcd31115) a; return b.getName(); } else if (a instanceof Pcd31116) { Pcd31116 b = (Pcd31116) a; return b.getName(); } else if (a instanceof Pcd31117) { Pcd31117 b = (Pcd31117) a; return b.getName(); } else if (a instanceof Pcd31118) { Pcd31118 b = (Pcd31118) a; return b.getName(); } else if (a instanceof Pcd31119) { Pcd31119 b = (Pcd31119) a; return b.getName(); } else if (a instanceof Pcd31132) { Pcd31132 b = (Pcd31132) a; return b.getName(); } else if (a instanceof Pcd31709) { Pcd31709 b = (Pcd31709) a; return b.getName(); } else if (a instanceof Pcd31770) { Pcd31770 b = (Pcd31770) a; return b.getName(); } else if (a instanceof Pcd31804) { Pcd31804 b = (Pcd31804) a; return b.getName(); } else if (a instanceof Pcd31805) { Pcd31805 b = (Pcd31805) a; return b.getName(); } else if (a instanceof Pcd31807) { Pcd31807 b = (Pcd31807) a; return b.getName(); } else if (a instanceof Pcd31808) { Pcd31808 b = (Pcd31808) a; return b.getName(); } else if (a instanceof Pcd31809) { Pcd31809 b = (Pcd31809) a; return b.getName(); } else if (a instanceof Pcd31810) { Pcd31810 b = (Pcd31810) a; return b.getName(); } else if (a instanceof Pcd31811) { Pcd31811 b = (Pcd31811) a; return b.getName(); } else if (a instanceof Pcd31812) { Pcd31812 b = (Pcd31812) a; return b.getName(); } else if (a instanceof Pcd31814) { Pcd31814 b = (Pcd31814) a; return b.getName(); } else if (a instanceof Pcd31817) { Pcd31817 b = (Pcd31817) a; return b.getName(); } else if (a instanceof Pcd31819) { Pcd31819 b = (Pcd31819) a; return b.getName(); } else if (a instanceof Pcd31820) { Pcd31820 b = (Pcd31820) a; return b.getName(); } else if (a instanceof Pcd31821) { Pcd31821 b = (Pcd31821) a; return b.getName(); } else if (a instanceof Pcd31822) { Pcd31822 b = (Pcd31822) a; return b.getName(); } else if (a instanceof Pcd31824) { Pcd31824 b = (Pcd31824) a; return b.getName(); } else if (a instanceof Pcd31826) { Pcd31826 b = (Pcd31826) a; return b.getName(); } else if (a instanceof Pcd31827) { Pcd31827 b = (Pcd31827) a; return b.getName(); } else if (a instanceof Pcd31828) { Pcd31828 b = (Pcd31828) a; return b.getName(); } else if (a instanceof Pcd31829) { Pcd31829 b = (Pcd31829) a; return b.getName(); } else if (a instanceof Pcd31830) { Pcd31830 b = (Pcd31830) a; return b.getName(); } else if (a instanceof Pcd31834) { Pcd31834 b = (Pcd31834) a; return b.getName(); } else if (a instanceof Pcd31835) { Pcd31835 b = (Pcd31835) a; return b.getName(); } else if (a instanceof Pcd31836) { Pcd31836 b = (Pcd31836) a; return b.getName(); } else if (a instanceof Pcd31837) { Pcd31837 b = (Pcd31837) a; return b.getName(); } else if (a instanceof Pcd31839) { Pcd31839 b = (Pcd31839) a; return b.getName(); } else if (a instanceof Pcd31841) { Pcd31841 b = (Pcd31841) a; return b.getName(); } else if (a instanceof Pcd31842) { Pcd31842 b = (Pcd31842) a; return b.getName(); } else if (a instanceof Pcd31844) { Pcd31844 b = (Pcd31844) a; return b.getName(); } else if (a instanceof Pcd31845) { Pcd31845 b = (Pcd31845) a; return b.getName(); } else if (a instanceof Pcd31847) { Pcd31847 b = (Pcd31847) a; return b.getName(); } else if (a instanceof Pcd31848) { Pcd31848 b = (Pcd31848) a; return b.getName(); } else if (a instanceof Pcd31849) { Pcd31849 b = (Pcd31849) a; return b.getName(); } else if (a instanceof Pcd31851) { Pcd31851 b = (Pcd31851) a; return b.getName(); } else if (a instanceof Pcd31852) { Pcd31852 b = (Pcd31852) a; return b.getName(); } else if (a instanceof Pcd31853) { Pcd31853 b = (Pcd31853) a; return b.getName(); } else if (a instanceof Pcd31854) { Pcd31854 b = (Pcd31854) a; return b.getName(); } else if (a instanceof Pcd31856) { Pcd31856 b = (Pcd31856) a; return b.getName(); } else if (a instanceof Pcd31858) { Pcd31858 b = (Pcd31858) a; return b.getName(); } else if (a instanceof Pcd32534) { Pcd32534 b = (Pcd32534) a; return b.getName(); } else if (a instanceof Pcd32537) { Pcd32537 b = (Pcd32537) a; return b.getName(); } else if (a instanceof Pcd32539) { Pcd32539 b = (Pcd32539) a; return b.getName(); } else if (a instanceof Pcd32543) { Pcd32543 b = (Pcd32543) a; return b.getName(); } else if (a instanceof Pcd32484) { Pcd32484 b = (Pcd32484) a; return b.getName(); } else if (a instanceof Pcd30900) { Pcd30900 b = (Pcd30900) a; return b.getName(); } else if (a instanceof Pcd30901) { Pcd30901 b = (Pcd30901) a; return b.getName(); } else if (a instanceof Pcd30960) { Pcd30960 b = (Pcd30960) a; return b.getName(); } else if (a instanceof Pcd31020) { Pcd31020 b = (Pcd31020) a; return b.getName(); } else if (a instanceof Pcd31021) { Pcd31021 b = (Pcd31021) a; return b.getName(); } else if (a instanceof Pcd31023) { Pcd31023 b = (Pcd31023) a; return b.getName(); } else if (a instanceof Pcd31025) { Pcd31025 b = (Pcd31025) a; return b.getName(); } else if (a instanceof Pcd31029) { Pcd31029 b = (Pcd31029) a; return b.getName(); } else if (a instanceof Pcd31071) { Pcd31071 b = (Pcd31071) a; return b.getName(); } else if (a instanceof Pcd31074) { Pcd31074 b = (Pcd31074) a; return b.getName(); } else if (a instanceof Pcd31075) { Pcd31075 b = (Pcd31075) a; return b.getName(); } else if (a instanceof Pcd31077) { Pcd31077 b = (Pcd31077) a; return b.getName(); } else if (a instanceof Pcd31078) { Pcd31078 b = (Pcd31078) a; return b.getName(); } else if (a instanceof Pcd31079) { Pcd31079 b = (Pcd31079) a; return b.getName(); } else if (a instanceof Pcd31081) { Pcd31081 b = (Pcd31081) a; return b.getName(); } else if (a instanceof Pcd31082) { Pcd31082 b = (Pcd31082) a; return b.getName(); } else if (a instanceof Pcd31085) { Pcd31085 b = (Pcd31085) a; return b.getName(); } else if (a instanceof Pcd31086) { Pcd31086 b = (Pcd31086) a; return b.getName(); } else if (a instanceof Pcd31088) { Pcd31088 b = (Pcd31088) a; return b.getName(); } else if (a instanceof Pcd31089) { Pcd31089 b = (Pcd31089) a; return b.getName(); } else if (a instanceof Pcd31090) { Pcd31090 b = (Pcd31090) a; return b.getName(); } else if (a instanceof Pcd31091) { Pcd31091 b = (Pcd31091) a; return b.getName(); } else if (a instanceof Pcd31092) { Pcd31092 b = (Pcd31092) a; return b.getName(); } else if (a instanceof Pcd31093) { Pcd31093 b = (Pcd31093) a; return b.getName(); } else if (a instanceof Pcd31094) { Pcd31094 b = (Pcd31094) a; return b.getName(); } else if (a instanceof Pcd31095) { Pcd31095 b = (Pcd31095) a; return b.getName(); } else if (a instanceof Pcd31096) { Pcd31096 b = (Pcd31096) a; return b.getName(); } else if (a instanceof Pcd31097) { Pcd31097 b = (Pcd31097) a; return b.getName(); } else if (a instanceof Pcd31098) { Pcd31098 b = (Pcd31098) a; return b.getName(); } else if (a instanceof Pcd31099) { Pcd31099 b = (Pcd31099) a; return b.getName(); } else if (a instanceof Pcd31100) { Pcd31100 b = (Pcd31100) a; return b.getName(); } else if (a instanceof Pcd31101) { Pcd31101 b = (Pcd31101) a; return b.getName(); } else if (a instanceof Pcd31102) { Pcd31102 b = (Pcd31102) a; return b.getName(); } else if (a instanceof Pcd31764) { Pcd31764 b = (Pcd31764) a; return b.getName(); } else if (a instanceof Pcd31780) { Pcd31780 b = (Pcd31780) a; return b.getName(); } else if (a instanceof Pcd31782) { Pcd31782 b = (Pcd31782) a; return b.getName(); } else if (a instanceof Pcd31783) { Pcd31783 b = (Pcd31783) a; return b.getName(); } else if (a instanceof Pcd31784) { Pcd31784 b = (Pcd31784) a; return b.getName(); } else if (a instanceof Pcd31785) { Pcd31785 b = (Pcd31785) a; return b.getName(); } else if (a instanceof Pcd31786) { Pcd31786 b = (Pcd31786) a; return b.getName(); } else if (a instanceof Pcd30800) { Pcd30800 b = (Pcd30800) a; return b.getName(); } else if (a instanceof Pcd30885) { Pcd30885 b = (Pcd30885) a; return b.getName(); } else if (a instanceof Pcd30887) { Pcd30887 b = (Pcd30887) a; return b.getName(); } else if (a instanceof Pcd30888) { Pcd30888 b = (Pcd30888) a; return b.getName(); } else if (a instanceof Pcd30890) { Pcd30890 b = (Pcd30890) a; return b.getName(); } else if (a instanceof Pcd30975) { Pcd30975 b = (Pcd30975) a; return b.getName(); } else if (a instanceof Pcd31744) { Pcd31744 b = (Pcd31744) a; return b.getName(); } else if (a instanceof Pcd31745) { Pcd31745 b = (Pcd31745) a; return b.getName(); } else if (a instanceof Pcd31746) { Pcd31746 b = (Pcd31746) a; return b.getName(); } else if (a instanceof Pcd31801) { Pcd31801 b = (Pcd31801) a; return b.getName(); } else if (a instanceof MediatorPcd1) { MediatorPcd1 b = (MediatorPcd1) a; return b.getName(); } else if (a instanceof MediatorPcd2) { MediatorPcd2 b = (MediatorPcd2) a; return b.getName(); } else if (a instanceof MediatorPcd3) { MediatorPcd3 b = (MediatorPcd3) a; return b.getName(); } else if (a instanceof MediatorPcd4) { MediatorPcd4 b = (MediatorPcd4) a; return b.getName(); } else if (a instanceof MediatorPcd5) { MediatorPcd5 b = (MediatorPcd5) a; return b.getName(); } else if (a instanceof MediatorPcd6) { MediatorPcd6 b = (MediatorPcd6) a; return b.getName(); } else if (a instanceof MediatorPcd7) { MediatorPcd7 b = (MediatorPcd7) a; return b.getName(); } else if (a instanceof MediatorPcd8) { MediatorPcd8 b = (MediatorPcd8) a; return b.getName(); } else if (a instanceof MediatorPcd9) { MediatorPcd9 b = (MediatorPcd9) a; return b.getName(); } else if (a instanceof MediatorPcd10) { MediatorPcd10 b = (MediatorPcd10) a; return b.getName(); } else if (a instanceof MediatorPcd11) { MediatorPcd11 b = (MediatorPcd11) a; return b.getName(); } else if (a instanceof MediatorPcd12) { MediatorPcd12 b = (MediatorPcd12) a; return b.getName(); } else if (a instanceof MediatorPcd13) { MediatorPcd13 b = (MediatorPcd13) a; return b.getName(); } else if (a instanceof MediatorPcd14) { MediatorPcd14 b = (MediatorPcd14) a; return b.getName(); } else if (a instanceof MediatorPcd15) { MediatorPcd15 b = (MediatorPcd15) a; return b.getName(); } else if (a instanceof MediatorPcd16) { MediatorPcd16 b = (MediatorPcd16) a; return b.getName(); } else if (a instanceof MediatorPcd17) { MediatorPcd17 b = (MediatorPcd17) a; return b.getName(); } else if (a instanceof MediatorPcd18) { MediatorPcd18 b = (MediatorPcd18) a; return b.getName(); } else if (a instanceof MediatorPcd19) { MediatorPcd19 b = (MediatorPcd19) a; return b.getName(); } else if (a instanceof MediatorPcd20) { MediatorPcd20 b = (MediatorPcd20) a; return b.getName(); } else if (a instanceof MediatorPcd21) { MediatorPcd21 b = (MediatorPcd21) a; return b.getName(); } else if (a instanceof MediatorPcd22) { MediatorPcd22 b = (MediatorPcd22) a; return b.getName(); } else if (a instanceof MediatorPcd23) { MediatorPcd23 b = (MediatorPcd23) a; return b.getName(); } else if (a instanceof MediatorPcd24) { MediatorPcd24 b = (MediatorPcd24) a; return b.getName(); } else if (a instanceof MediatorPcd25) { MediatorPcd25 b = (MediatorPcd25) a; return b.getName(); } else if (a instanceof MediatorPcd26) { MediatorPcd26 b = (MediatorPcd26) a; return b.getName(); } else if (a instanceof MediatorPcd27) { MediatorPcd27 b = (MediatorPcd27) a; return b.getName(); } else if (a instanceof MediatorPcd28) { MediatorPcd28 b = (MediatorPcd28) a; return b.getName(); } else if (a instanceof MediatorPcd29) { MediatorPcd29 b = (MediatorPcd29) a; return b.getName(); } else if (a instanceof MediatorPcd30) { MediatorPcd30 b = (MediatorPcd30) a; return b.getName(); } else if (a instanceof MediatorPcd31) { MediatorPcd31 b = (MediatorPcd31) a; return b.getName(); } else if (a instanceof MediatorPcd32) { MediatorPcd32 b = (MediatorPcd32) a; return b.getName(); } else if (a instanceof MediatorPcd33) { MediatorPcd33 b = (MediatorPcd33) a; return b.getName(); } else if (a instanceof MediatorPcd34) { MediatorPcd34 b = (MediatorPcd34) a; return b.getName(); } else if (a instanceof MediatorPcd35) { MediatorPcd35 b = (MediatorPcd35) a; return b.getName(); } else if (a instanceof MediatorPcd36) { MediatorPcd36 b = (MediatorPcd36) a; return b.getName(); } else if (a instanceof MediatorPcd37) { MediatorPcd37 b = (MediatorPcd37) a; return b.getName(); } else if (a instanceof MediatorPcd38) { MediatorPcd38 b = (MediatorPcd38) a; return b.getName(); } else if (a instanceof MediatorPcd39) { MediatorPcd39 b = (MediatorPcd39) a; return b.getName(); } else if (a instanceof MediatorPcd40) { MediatorPcd40 b = (MediatorPcd40) a; return b.getName(); } else if (a instanceof MediatorPcd41) { MediatorPcd41 b = (MediatorPcd41) a; return b.getName(); } else if (a instanceof MediatorPcd42) { MediatorPcd42 b = (MediatorPcd42) a; return b.getName(); } else if (a instanceof MediatorPcd43) { MediatorPcd43 b = (MediatorPcd43) a; return b.getName(); } else if (a instanceof MediatorPcd44) { MediatorPcd44 b = (MediatorPcd44) a; return b.getName(); } else if (a instanceof MediatorPcd45) { MediatorPcd45 b = (MediatorPcd45) a; return b.getName(); } else if (a instanceof MediatorPcd46) { MediatorPcd46 b = (MediatorPcd46) a; return b.getName(); } else if (a instanceof MediatorPcd47) { MediatorPcd47 b = (MediatorPcd47) a; return b.getName(); } else if (a instanceof MediatorPcd48) { MediatorPcd48 b = (MediatorPcd48) a; return b.getName(); } else if (a instanceof MediatorPcd49) { MediatorPcd49 b = (MediatorPcd49) a; return b.getName(); } else if (a instanceof MediatorPcd50) { MediatorPcd50 b = (MediatorPcd50) a; return b.getName(); } else if (a instanceof MediatorPcd51) { MediatorPcd51 b = (MediatorPcd51) a; return b.getName(); } else if (a instanceof MediatorPcd52) { MediatorPcd52 b = (MediatorPcd52) a; return b.getName(); } else if (a instanceof MediatorPcd53) { MediatorPcd53 b = (MediatorPcd53) a; return b.getName(); } else if (a instanceof MediatorPcd54) { MediatorPcd54 b = (MediatorPcd54) a; return b.getName(); } else if (a instanceof MediatorPcd55) { MediatorPcd55 b = (MediatorPcd55) a; return b.getName(); } else if (a instanceof MediatorPcd56) { MediatorPcd56 b = (MediatorPcd56) a; return b.getName(); } else if (a instanceof MediatorPcd57) { MediatorPcd57 b = (MediatorPcd57) a; return b.getName(); } else if (a instanceof MediatorPcd58) { MediatorPcd58 b = (MediatorPcd58) a; return b.getName(); } else if (a instanceof MediatorPcd59) { MediatorPcd59 b = (MediatorPcd59) a; return b.getName(); } else if (a instanceof MediatorPcd60) { MediatorPcd60 b = (MediatorPcd60) a; return b.getName(); } else if (a instanceof MediatorPcd134) { MediatorPcd134 b = (MediatorPcd134) a; return b.getName(); } else if (a instanceof MediatorPcd135) { MediatorPcd135 b = (MediatorPcd135) a; return b.getName(); } else if (a instanceof MediatorPcd136) { MediatorPcd136 b = (MediatorPcd136) a; return b.getName(); } else if (a instanceof MediatorPcd137) { MediatorPcd137 b = (MediatorPcd137) a; return b.getName(); } else if (a instanceof MediatorPcd138) { MediatorPcd138 b = (MediatorPcd138) a; return b.getName(); } else if (a instanceof MediatorPcd139) { MediatorPcd139 b = (MediatorPcd139) a; return b.getName(); } else if (a instanceof MediatorPcd140) { MediatorPcd140 b = (MediatorPcd140) a; return b.getName(); } else if (a instanceof MediatorPcd141) { MediatorPcd141 b = (MediatorPcd141) a; return b.getName(); } else if (a instanceof MediatorPcd142) { MediatorPcd142 b = (MediatorPcd142) a; return b.getName(); } else if (a instanceof MediatorPcd143) { MediatorPcd143 b = (MediatorPcd143) a; return b.getName(); } else if (a instanceof MediatorPcd144) { MediatorPcd144 b = (MediatorPcd144) a; return b.getName(); } else if (a instanceof MediatorPcd145) { MediatorPcd145 b = (MediatorPcd145) a; return b.getName(); } else if (a instanceof MediatorPcd146) { MediatorPcd146 b = (MediatorPcd146) a; return b.getName(); } else if (a instanceof MediatorPcd147) { MediatorPcd147 b = (MediatorPcd147) a; return b.getName(); } else if (a instanceof MediatorPcd148) { MediatorPcd148 b = (MediatorPcd148) a; return b.getName(); } else if (a instanceof MediatorPcd149) { MediatorPcd149 b = (MediatorPcd149) a; return b.getName(); } else if (a instanceof MediatorPcd150) { MediatorPcd150 b = (MediatorPcd150) a; return b.getName(); } else if (a instanceof MediatorPcd151) { MediatorPcd151 b = (MediatorPcd151) a; return b.getName(); } else if (a instanceof MediatorPcd152) { MediatorPcd152 b = (MediatorPcd152) a; return b.getName(); } else if (a instanceof MediatorPcd153) { MediatorPcd153 b = (MediatorPcd153) a; return b.getName(); } else if (a instanceof MediatorPcd154) { MediatorPcd154 b = (MediatorPcd154) a; return b.getName(); } else if (a instanceof MediatorPcd155) { MediatorPcd155 b = (MediatorPcd155) a; return b.getName(); } else if (a instanceof MediatorPcd156) { MediatorPcd156 b = (MediatorPcd156) a; return b.getName(); } else if (a instanceof MediatorPcd157) { MediatorPcd157 b = (MediatorPcd157) a; return b.getName(); } else if (a instanceof MediatorPcd158) { MediatorPcd158 b = (MediatorPcd158) a; return b.getName(); } else if (a instanceof MediatorPcd159) { MediatorPcd159 b = (MediatorPcd159) a; return b.getName(); } else if (a instanceof MediatorPcd160) { MediatorPcd160 b = (MediatorPcd160) a; return b.getName(); } else if (a instanceof MediatorPcd161) { MediatorPcd161 b = (MediatorPcd161) a; return b.getName(); } else if (a instanceof MediatorPcd162) { MediatorPcd162 b = (MediatorPcd162) a; return b.getName(); } else if (a instanceof MediatorPcd163) { MediatorPcd163 b = (MediatorPcd163) a; return b.getName(); } else if (a instanceof MediatorPcd164) { MediatorPcd164 b = (MediatorPcd164) a; return b.getName(); } else if (a instanceof MediatorPcd165) { MediatorPcd165 b = (MediatorPcd165) a; return b.getName(); } else if (a instanceof MediatorPcd166) { MediatorPcd166 b = (MediatorPcd166) a; return b.getName(); } else if (a instanceof MediatorPcd167) { MediatorPcd167 b = (MediatorPcd167) a; return b.getName(); } else if (a instanceof MediatorPcd168) { MediatorPcd168 b = (MediatorPcd168) a; return b.getName(); } else if (a instanceof MediatorPcd169) { MediatorPcd169 b = (MediatorPcd169) a; return b.getName(); } else if (a instanceof MediatorPcd170) { MediatorPcd170 b = (MediatorPcd170) a; return b.getName(); } else if (a instanceof MediatorPcd171) { MediatorPcd171 b = (MediatorPcd171) a; return b.getName(); } else if (a instanceof MediatorPcd172) { MediatorPcd172 b = (MediatorPcd172) a; return b.getName(); } else if (a instanceof MediatorPcd173) { MediatorPcd173 b = (MediatorPcd173) a; return b.getName(); } else if (a instanceof MediatorPcd174) { MediatorPcd174 b = (MediatorPcd174) a; return b.getName(); } else if (a instanceof MediatorPcd175) { MediatorPcd175 b = (MediatorPcd175) a; return b.getName(); } else if (a instanceof MediatorPcd176) { MediatorPcd176 b = (MediatorPcd176) a; return b.getName(); } else if (a instanceof MediatorPcd214) { MediatorPcd214 b = (MediatorPcd214) a; return b.getName(); } else if (a instanceof MediatorPcd215) { MediatorPcd215 b = (MediatorPcd215) a; return b.getName(); } else if (a instanceof MediatorPcd216) { MediatorPcd216 b = (MediatorPcd216) a; return b.getName(); } else if (a instanceof MediatorPcd217) { MediatorPcd217 b = (MediatorPcd217) a; return b.getName(); } else if (a instanceof MediatorPcd218) { MediatorPcd218 b = (MediatorPcd218) a; return b.getName(); } else if (a instanceof MediatorPcd219) { MediatorPcd219 b = (MediatorPcd219) a; return b.getName(); } else if (a instanceof MediatorPcd220) { MediatorPcd220 b = (MediatorPcd220) a; return b.getName(); } else if (a instanceof MediatorPcd221) { MediatorPcd221 b = (MediatorPcd221) a; return b.getName(); } else if (a instanceof MediatorPcd222) { MediatorPcd222 b = (MediatorPcd222) a; return b.getName(); } else if (a instanceof MediatorPcd223) { MediatorPcd223 b = (MediatorPcd223) a; return b.getName(); } return null; } %>! add additional code <% public String getTypeCons(AtomicModelImpl a) { if (a instanceof DataCenterCP) { DataCenterCP b = (DataCenterCP) a; return b.typeCons; } else if (a instanceof CommandAndControlSJC) { CommandAndControlSJC b = (CommandAndControlSJC) a; return b.typeCons; } else if (a instanceof GroundStation) { GroundStation b = (GroundStation) a; return b.typeCons; } else if (a instanceof Satellite) { Satellite b = (Satellite) a; return b.typeCons; } else if (a instanceof Mediator1) { Mediator1 b = (Mediator1) a; return b.typeCons; } else if (a instanceof Mediator2) { Mediator2 b = (Mediator2) a; return b.typeCons; } else if (a instanceof Mediator3) { Mediator3 b = (Mediator3) a; return b.typeCons; } else if (a instanceof Mediator4) { Mediator4 b = (Mediator4) a; return b.typeCons; } else if (a instanceof Pcd30869) { Pcd30869 b = (Pcd30869) a; return b.typeCons; } else if (a instanceof Pcd30870) { Pcd30870 b = (Pcd30870) a; return b.typeCons; } else if (a instanceof Pcd30871) { Pcd30871 b = (Pcd30871) a; return b.typeCons; } else if (a instanceof Pcd30873) { Pcd30873 b = (Pcd30873) a; return b.typeCons; } else if (a instanceof Pcd30879) { Pcd30879 b = (Pcd30879) a; return b.typeCons; } else if (a instanceof Pcd30881) { Pcd30881 b = (Pcd30881) a; return b.typeCons; } else if (a instanceof Pcd30882) { Pcd30882 b = (Pcd30882) a; return b.typeCons; } else if (a instanceof Pcd30948) { Pcd30948 b = (Pcd30948) a; return b.typeCons; } else if (a instanceof Pcd31000) { Pcd31000 b = (Pcd31000) a; return b.typeCons; } else if (a instanceof Pcd31006) { Pcd31006 b = (Pcd31006) a; return b.typeCons; } else if (a instanceof Pcd31111) { Pcd31111 b = (Pcd31111) a; return b.typeCons; } else if (a instanceof Pcd31112) { Pcd31112 b = (Pcd31112) a; return b.typeCons; } else if (a instanceof Pcd31113) { Pcd31113 b = (Pcd31113) a; return b.typeCons; } else if (a instanceof Pcd31114) { Pcd31114 b = (Pcd31114) a; return b.typeCons; } else if (a instanceof Pcd31115) { Pcd31115 b = (Pcd31115) a; return b.typeCons; } else if (a instanceof Pcd31116) { Pcd31116 b = (Pcd31116) a; return b.typeCons; } else if (a instanceof Pcd31117) { Pcd31117 b = (Pcd31117) a; return b.typeCons; } else if (a instanceof Pcd31118) { Pcd31118 b = (Pcd31118) a; return b.typeCons; } else if (a instanceof Pcd31119) { Pcd31119 b = (Pcd31119) a; return b.typeCons; } else if (a instanceof Pcd31132) { Pcd31132 b = (Pcd31132) a; return b.typeCons; } else if (a instanceof Pcd31709) { Pcd31709 b = (Pcd31709) a; return b.typeCons; } else if (a instanceof Pcd31770) { Pcd31770 b = (Pcd31770) a; return b.typeCons; } else if (a instanceof Pcd31804) { Pcd31804 b = (Pcd31804) a; return b.typeCons; } else if (a instanceof Pcd31805) { Pcd31805 b = (Pcd31805) a; return b.typeCons; } else if (a instanceof Pcd31807) { Pcd31807 b = (Pcd31807) a; return b.typeCons; } else if (a instanceof Pcd31808) { Pcd31808 b = (Pcd31808) a; return b.typeCons; } else if (a instanceof Pcd31809) { Pcd31809 b = (Pcd31809) a; return b.typeCons; } else if (a instanceof Pcd31810) { Pcd31810 b = (Pcd31810) a; return b.typeCons; } else if (a instanceof Pcd31811) { Pcd31811 b = (Pcd31811) a; return b.typeCons; } else if (a instanceof Pcd31812) { Pcd31812 b = (Pcd31812) a; return b.typeCons; } else if (a instanceof Pcd31814) { Pcd31814 b = (Pcd31814) a; return b.typeCons; } else if (a instanceof Pcd31817) { Pcd31817 b = (Pcd31817) a; return b.typeCons; } else if (a instanceof Pcd31819) { Pcd31819 b = (Pcd31819) a; return b.typeCons; } else if (a instanceof Pcd31820) { Pcd31820 b = (Pcd31820) a; return b.typeCons; } else if (a instanceof Pcd31821) { Pcd31821 b = (Pcd31821) a; return b.typeCons; } else if (a instanceof Pcd31822) { Pcd31822 b = (Pcd31822) a; return b.typeCons; } else if (a instanceof Pcd31824) { Pcd31824 b = (Pcd31824) a; return b.typeCons; } else if (a instanceof Pcd31826) { Pcd31826 b = (Pcd31826) a; return b.typeCons; } else if (a instanceof Pcd31827) { Pcd31827 b = (Pcd31827) a; return b.typeCons; } else if (a instanceof Pcd31828) { Pcd31828 b = (Pcd31828) a; return b.typeCons; } else if (a instanceof Pcd31829) { Pcd31829 b = (Pcd31829) a; return b.typeCons; } else if (a instanceof Pcd31830) { Pcd31830 b = (Pcd31830) a; return b.typeCons; } else if (a instanceof Pcd31834) { Pcd31834 b = (Pcd31834) a; return b.typeCons; } else if (a instanceof Pcd31835) { Pcd31835 b = (Pcd31835) a; return b.typeCons; } else if (a instanceof Pcd31836) { Pcd31836 b = (Pcd31836) a; return b.typeCons; } else if (a instanceof Pcd31837) { Pcd31837 b = (Pcd31837) a; return b.typeCons; } else if (a instanceof Pcd31839) { Pcd31839 b = (Pcd31839) a; return b.typeCons; } else if (a instanceof Pcd31841) { Pcd31841 b = (Pcd31841) a; return b.typeCons; } else if (a instanceof Pcd31842) { Pcd31842 b = (Pcd31842) a; return b.typeCons; } else if (a instanceof Pcd31844) { Pcd31844 b = (Pcd31844) a; return b.typeCons; } else if (a instanceof Pcd31845) { Pcd31845 b = (Pcd31845) a; return b.typeCons; } else if (a instanceof Pcd31847) { Pcd31847 b = (Pcd31847) a; return b.typeCons; } else if (a instanceof Pcd31848) { Pcd31848 b = (Pcd31848) a; return b.typeCons; } else if (a instanceof Pcd31849) { Pcd31849 b = (Pcd31849) a; return b.typeCons; } else if (a instanceof Pcd31851) { Pcd31851 b = (Pcd31851) a; return b.typeCons; } else if (a instanceof Pcd31852) { Pcd31852 b = (Pcd31852) a; return b.typeCons; } else if (a instanceof Pcd31853) { Pcd31853 b = (Pcd31853) a; return b.typeCons; } else if (a instanceof Pcd31854) { Pcd31854 b = (Pcd31854) a; return b.typeCons; } else if (a instanceof Pcd31856) { Pcd31856 b = (Pcd31856) a; return b.typeCons; } else if (a instanceof Pcd31858) { Pcd31858 b = (Pcd31858) a; return b.typeCons; } else if (a instanceof Pcd32534) { Pcd32534 b = (Pcd32534) a; return b.typeCons; } else if (a instanceof Pcd32537) { Pcd32537 b = (Pcd32537) a; return b.typeCons; } else if (a instanceof Pcd32539) { Pcd32539 b = (Pcd32539) a; return b.typeCons; } else if (a instanceof Pcd32543) { Pcd32543 b = (Pcd32543) a; return b.typeCons; } else if (a instanceof Pcd32484) { Pcd32484 b = (Pcd32484) a; return b.typeCons; } else if (a instanceof Pcd30900) { Pcd30900 b = (Pcd30900) a; return b.typeCons; } else if (a instanceof Pcd30901) { Pcd30901 b = (Pcd30901) a; return b.typeCons; } else if (a instanceof Pcd30960) { Pcd30960 b = (Pcd30960) a; return b.typeCons; } else if (a instanceof Pcd31020) { Pcd31020 b = (Pcd31020) a; return b.typeCons; } else if (a instanceof Pcd31021) { Pcd31021 b = (Pcd31021) a; return b.typeCons; } else if (a instanceof Pcd31023) { Pcd31023 b = (Pcd31023) a; return b.typeCons; } else if (a instanceof Pcd31025) { Pcd31025 b = (Pcd31025) a; return b.typeCons; } else if (a instanceof Pcd31029) { Pcd31029 b = (Pcd31029) a; return b.typeCons; } else if (a instanceof Pcd31071) { Pcd31071 b = (Pcd31071) a; return b.typeCons; } else if (a instanceof Pcd31074) { Pcd31074 b = (Pcd31074) a; return b.typeCons; } else if (a instanceof Pcd31075) { Pcd31075 b = (Pcd31075) a; return b.typeCons; } else if (a instanceof Pcd31077) { Pcd31077 b = (Pcd31077) a; return b.typeCons; } else if (a instanceof Pcd31078) { Pcd31078 b = (Pcd31078) a; return b.typeCons; } else if (a instanceof Pcd31079) { Pcd31079 b = (Pcd31079) a; return b.typeCons; } else if (a instanceof Pcd31081) { Pcd31081 b = (Pcd31081) a; return b.typeCons; } else if (a instanceof Pcd31082) { Pcd31082 b = (Pcd31082) a; return b.typeCons; } else if (a instanceof Pcd31085) { Pcd31085 b = (Pcd31085) a; return b.typeCons; } else if (a instanceof Pcd31086) { Pcd31086 b = (Pcd31086) a; return b.typeCons; } else if (a instanceof Pcd31088) { Pcd31088 b = (Pcd31088) a; return b.typeCons; } else if (a instanceof Pcd31089) { Pcd31089 b = (Pcd31089) a; return b.typeCons; } else if (a instanceof Pcd31090) { Pcd31090 b = (Pcd31090) a; return b.typeCons; } else if (a instanceof Pcd31091) { Pcd31091 b = (Pcd31091) a; return b.typeCons; } else if (a instanceof Pcd31092) { Pcd31092 b = (Pcd31092) a; return b.typeCons; } else if (a instanceof Pcd31093) { Pcd31093 b = (Pcd31093) a; return b.typeCons; } else if (a instanceof Pcd31094) { Pcd31094 b = (Pcd31094) a; return b.typeCons; } else if (a instanceof Pcd31095) { Pcd31095 b = (Pcd31095) a; return b.typeCons; } else if (a instanceof Pcd31096) { Pcd31096 b = (Pcd31096) a; return b.typeCons; } else if (a instanceof Pcd31097) { Pcd31097 b = (Pcd31097) a; return b.typeCons; } else if (a instanceof Pcd31098) { Pcd31098 b = (Pcd31098) a; return b.typeCons; } else if (a instanceof Pcd31099) { Pcd31099 b = (Pcd31099) a; return b.typeCons; } else if (a instanceof Pcd31100) { Pcd31100 b = (Pcd31100) a; return b.typeCons; } else if (a instanceof Pcd31101) { Pcd31101 b = (Pcd31101) a; return b.typeCons; } else if (a instanceof Pcd31102) { Pcd31102 b = (Pcd31102) a; return b.typeCons; } else if (a instanceof Pcd31764) { Pcd31764 b = (Pcd31764) a; return b.typeCons; } else if (a instanceof Pcd31780) { Pcd31780 b = (Pcd31780) a; return b.typeCons; } else if (a instanceof Pcd31782) { Pcd31782 b = (Pcd31782) a; return b.typeCons; } else if (a instanceof Pcd31783) { Pcd31783 b = (Pcd31783) a; return b.typeCons; } else if (a instanceof Pcd31784) { Pcd31784 b = (Pcd31784) a; return b.typeCons; } else if (a instanceof Pcd31785) { Pcd31785 b = (Pcd31785) a; return b.typeCons; } else if (a instanceof Pcd31786) { Pcd31786 b = (Pcd31786) a; return b.typeCons; } else if (a instanceof Pcd30800) { Pcd30800 b = (Pcd30800) a; return b.typeCons; } else if (a instanceof Pcd30885) { Pcd30885 b = (Pcd30885) a; return b.typeCons; } else if (a instanceof Pcd30887) { Pcd30887 b = (Pcd30887) a; return b.typeCons; } else if (a instanceof Pcd30888) { Pcd30888 b = (Pcd30888) a; return b.typeCons; } else if (a instanceof Pcd30890) { Pcd30890 b = (Pcd30890) a; return b.typeCons; } else if (a instanceof Pcd30975) { Pcd30975 b = (Pcd30975) a; return b.typeCons; } else if (a instanceof Pcd31744) { Pcd31744 b = (Pcd31744) a; return b.typeCons; } else if (a instanceof Pcd31745) { Pcd31745 b = (Pcd31745) a; return b.typeCons; } else if (a instanceof Pcd31746) { Pcd31746 b = (Pcd31746) a; return b.typeCons; } else if (a instanceof Pcd31801) { Pcd31801 b = (Pcd31801) a; return b.typeCons; } else if (a instanceof MediatorPcd1) { MediatorPcd1 b = (MediatorPcd1) a; return b.typeCons; } else if (a instanceof MediatorPcd2) { MediatorPcd2 b = (MediatorPcd2) a; return b.typeCons; } else if (a instanceof MediatorPcd3) { MediatorPcd3 b = (MediatorPcd3) a; return b.typeCons; } else if (a instanceof MediatorPcd4) { MediatorPcd4 b = (MediatorPcd4) a; return b.typeCons; } else if (a instanceof MediatorPcd5) { MediatorPcd5 b = (MediatorPcd5) a; return b.typeCons; } else if (a instanceof MediatorPcd6) { MediatorPcd6 b = (MediatorPcd6) a; return b.typeCons; } else if (a instanceof MediatorPcd7) { MediatorPcd7 b = (MediatorPcd7) a; return b.typeCons; } else if (a instanceof MediatorPcd8) { MediatorPcd8 b = (MediatorPcd8) a; return b.typeCons; } else if (a instanceof MediatorPcd9) { MediatorPcd9 b = (MediatorPcd9) a; return b.typeCons; } else if (a instanceof MediatorPcd10) { MediatorPcd10 b = (MediatorPcd10) a; return b.typeCons; } else if (a instanceof MediatorPcd11) { MediatorPcd11 b = (MediatorPcd11) a; return b.typeCons; } else if (a instanceof MediatorPcd12) { MediatorPcd12 b = (MediatorPcd12) a; return b.typeCons; } else if (a instanceof MediatorPcd13) { MediatorPcd13 b = (MediatorPcd13) a; return b.typeCons; } else if (a instanceof MediatorPcd14) { MediatorPcd14 b = (MediatorPcd14) a; return b.typeCons; } else if (a instanceof MediatorPcd15) { MediatorPcd15 b = (MediatorPcd15) a; return b.typeCons; } else if (a instanceof MediatorPcd16) { MediatorPcd16 b = (MediatorPcd16) a; return b.typeCons; } else if (a instanceof MediatorPcd17) { MediatorPcd17 b = (MediatorPcd17) a; return b.typeCons; } else if (a instanceof MediatorPcd18) { MediatorPcd18 b = (MediatorPcd18) a; return b.typeCons; } else if (a instanceof MediatorPcd19) { MediatorPcd19 b = (MediatorPcd19) a; return b.typeCons; } else if (a instanceof MediatorPcd20) { MediatorPcd20 b = (MediatorPcd20) a; return b.typeCons; } else if (a instanceof MediatorPcd21) { MediatorPcd21 b = (MediatorPcd21) a; return b.typeCons; } else if (a instanceof MediatorPcd22) { MediatorPcd22 b = (MediatorPcd22) a; return b.typeCons; } else if (a instanceof MediatorPcd23) { MediatorPcd23 b = (MediatorPcd23) a; return b.typeCons; } else if (a instanceof MediatorPcd24) { MediatorPcd24 b = (MediatorPcd24) a; return b.typeCons; } else if (a instanceof MediatorPcd25) { MediatorPcd25 b = (MediatorPcd25) a; return b.typeCons; } else if (a instanceof MediatorPcd26) { MediatorPcd26 b = (MediatorPcd26) a; return b.typeCons; } else if (a instanceof MediatorPcd27) { MediatorPcd27 b = (MediatorPcd27) a; return b.typeCons; } else if (a instanceof MediatorPcd28) { MediatorPcd28 b = (MediatorPcd28) a; return b.typeCons; } else if (a instanceof MediatorPcd29) { MediatorPcd29 b = (MediatorPcd29) a; return b.typeCons; } else if (a instanceof MediatorPcd30) { MediatorPcd30 b = (MediatorPcd30) a; return b.typeCons; } else if (a instanceof MediatorPcd31) { MediatorPcd31 b = (MediatorPcd31) a; return b.typeCons; } else if (a instanceof MediatorPcd32) { MediatorPcd32 b = (MediatorPcd32) a; return b.typeCons; } else if (a instanceof MediatorPcd33) { MediatorPcd33 b = (MediatorPcd33) a; return b.typeCons; } else if (a instanceof MediatorPcd34) { MediatorPcd34 b = (MediatorPcd34) a; return b.typeCons; } else if (a instanceof MediatorPcd35) { MediatorPcd35 b = (MediatorPcd35) a; return b.typeCons; } else if (a instanceof MediatorPcd36) { MediatorPcd36 b = (MediatorPcd36) a; return b.typeCons; } else if (a instanceof MediatorPcd37) { MediatorPcd37 b = (MediatorPcd37) a; return b.typeCons; } else if (a instanceof MediatorPcd38) { MediatorPcd38 b = (MediatorPcd38) a; return b.typeCons; } else if (a instanceof MediatorPcd39) { MediatorPcd39 b = (MediatorPcd39) a; return b.typeCons; } else if (a instanceof MediatorPcd40) { MediatorPcd40 b = (MediatorPcd40) a; return b.typeCons; } else if (a instanceof MediatorPcd41) { MediatorPcd41 b = (MediatorPcd41) a; return b.typeCons; } else if (a instanceof MediatorPcd42) { MediatorPcd42 b = (MediatorPcd42) a; return b.typeCons; } else if (a instanceof MediatorPcd43) { MediatorPcd43 b = (MediatorPcd43) a; return b.typeCons; } else if (a instanceof MediatorPcd44) { MediatorPcd44 b = (MediatorPcd44) a; return b.typeCons; } else if (a instanceof MediatorPcd45) { MediatorPcd45 b = (MediatorPcd45) a; return b.typeCons; } else if (a instanceof MediatorPcd46) { MediatorPcd46 b = (MediatorPcd46) a; return b.typeCons; } else if (a instanceof MediatorPcd47) { MediatorPcd47 b = (MediatorPcd47) a; return b.typeCons; } else if (a instanceof MediatorPcd48) { MediatorPcd48 b = (MediatorPcd48) a; return b.typeCons; } else if (a instanceof MediatorPcd49) { MediatorPcd49 b = (MediatorPcd49) a; return b.typeCons; } else if (a instanceof MediatorPcd50) { MediatorPcd50 b = (MediatorPcd50) a; return b.typeCons; } else if (a instanceof MediatorPcd51) { MediatorPcd51 b = (MediatorPcd51) a; return b.typeCons; } else if (a instanceof MediatorPcd52) { MediatorPcd52 b = (MediatorPcd52) a; return b.typeCons; } else if (a instanceof MediatorPcd53) { MediatorPcd53 b = (MediatorPcd53) a; return b.typeCons; } else if (a instanceof MediatorPcd54) { MediatorPcd54 b = (MediatorPcd54) a; return b.typeCons; } else if (a instanceof MediatorPcd55) { MediatorPcd55 b = (MediatorPcd55) a; return b.typeCons; } else if (a instanceof MediatorPcd56) { MediatorPcd56 b = (MediatorPcd56) a; return b.typeCons; } else if (a instanceof MediatorPcd57) { MediatorPcd57 b = (MediatorPcd57) a; return b.typeCons; } else if (a instanceof MediatorPcd58) { MediatorPcd58 b = (MediatorPcd58) a; return b.typeCons; } else if (a instanceof MediatorPcd59) { MediatorPcd59 b = (MediatorPcd59) a; return b.typeCons; } else if (a instanceof MediatorPcd60) { MediatorPcd60 b = (MediatorPcd60) a; return b.typeCons; } else if (a instanceof MediatorPcd134) { MediatorPcd134 b = (MediatorPcd134) a; return b.typeCons; } else if (a instanceof MediatorPcd135) { MediatorPcd135 b = (MediatorPcd135) a; return b.typeCons; } else if (a instanceof MediatorPcd136) { MediatorPcd136 b = (MediatorPcd136) a; return b.typeCons; } else if (a instanceof MediatorPcd137) { MediatorPcd137 b = (MediatorPcd137) a; return b.typeCons; } else if (a instanceof MediatorPcd138) { MediatorPcd138 b = (MediatorPcd138) a; return b.typeCons; } else if (a instanceof MediatorPcd139) { MediatorPcd139 b = (MediatorPcd139) a; return b.typeCons; } else if (a instanceof MediatorPcd140) { MediatorPcd140 b = (MediatorPcd140) a; return b.typeCons; } else if (a instanceof MediatorPcd141) { MediatorPcd141 b = (MediatorPcd141) a; return b.typeCons; } else if (a instanceof MediatorPcd142) { MediatorPcd142 b = (MediatorPcd142) a; return b.typeCons; } else if (a instanceof MediatorPcd143) { MediatorPcd143 b = (MediatorPcd143) a; return b.typeCons; } else if (a instanceof MediatorPcd144) { MediatorPcd144 b = (MediatorPcd144) a; return b.typeCons; } else if (a instanceof MediatorPcd145) { MediatorPcd145 b = (MediatorPcd145) a; return b.typeCons; } else if (a instanceof MediatorPcd146) { MediatorPcd146 b = (MediatorPcd146) a; return b.typeCons; } else if (a instanceof MediatorPcd147) { MediatorPcd147 b = (MediatorPcd147) a; return b.typeCons; } else if (a instanceof MediatorPcd148) { MediatorPcd148 b = (MediatorPcd148) a; return b.typeCons; } else if (a instanceof MediatorPcd149) { MediatorPcd149 b = (MediatorPcd149) a; return b.typeCons; } else if (a instanceof MediatorPcd150) { MediatorPcd150 b = (MediatorPcd150) a; return b.typeCons; } else if (a instanceof MediatorPcd151) { MediatorPcd151 b = (MediatorPcd151) a; return b.typeCons; } else if (a instanceof MediatorPcd152) { MediatorPcd152 b = (MediatorPcd152) a; return b.typeCons; } else if (a instanceof MediatorPcd153) { MediatorPcd153 b = (MediatorPcd153) a; return b.typeCons; } else if (a instanceof MediatorPcd154) { MediatorPcd154 b = (MediatorPcd154) a; return b.typeCons; } else if (a instanceof MediatorPcd155) { MediatorPcd155 b = (MediatorPcd155) a; return b.typeCons; } else if (a instanceof MediatorPcd156) { MediatorPcd156 b = (MediatorPcd156) a; return b.typeCons; } else if (a instanceof MediatorPcd157) { MediatorPcd157 b = (MediatorPcd157) a; return b.typeCons; } else if (a instanceof MediatorPcd158) { MediatorPcd158 b = (MediatorPcd158) a; return b.typeCons; } else if (a instanceof MediatorPcd159) { MediatorPcd159 b = (MediatorPcd159) a; return b.typeCons; } else if (a instanceof MediatorPcd160) { MediatorPcd160 b = (MediatorPcd160) a; return b.typeCons; } else if (a instanceof MediatorPcd161) { MediatorPcd161 b = (MediatorPcd161) a; return b.typeCons; } else if (a instanceof MediatorPcd162) { MediatorPcd162 b = (MediatorPcd162) a; return b.typeCons; } else if (a instanceof MediatorPcd163) { MediatorPcd163 b = (MediatorPcd163) a; return b.typeCons; } else if (a instanceof MediatorPcd164) { MediatorPcd164 b = (MediatorPcd164) a; return b.typeCons; } else if (a instanceof MediatorPcd165) { MediatorPcd165 b = (MediatorPcd165) a; return b.typeCons; } else if (a instanceof MediatorPcd166) { MediatorPcd166 b = (MediatorPcd166) a; return b.typeCons; } else if (a instanceof MediatorPcd167) { MediatorPcd167 b = (MediatorPcd167) a; return b.typeCons; } else if (a instanceof MediatorPcd168) { MediatorPcd168 b = (MediatorPcd168) a; return b.typeCons; } else if (a instanceof MediatorPcd169) { MediatorPcd169 b = (MediatorPcd169) a; return b.typeCons; } else if (a instanceof MediatorPcd170) { MediatorPcd170 b = (MediatorPcd170) a; return b.typeCons; } else if (a instanceof MediatorPcd171) { MediatorPcd171 b = (MediatorPcd171) a; return b.typeCons; } else if (a instanceof MediatorPcd172) { MediatorPcd172 b = (MediatorPcd172) a; return b.typeCons; } else if (a instanceof MediatorPcd173) { MediatorPcd173 b = (MediatorPcd173) a; return b.typeCons; } else if (a instanceof MediatorPcd174) { MediatorPcd174 b = (MediatorPcd174) a; return b.typeCons; } else if (a instanceof MediatorPcd175) { MediatorPcd175 b = (MediatorPcd175) a; return b.typeCons; } else if (a instanceof MediatorPcd176) { MediatorPcd176 b = (MediatorPcd176) a; return b.typeCons; } else if (a instanceof MediatorPcd214) { MediatorPcd214 b = (MediatorPcd214) a; return b.typeCons; } else if (a instanceof MediatorPcd215) { MediatorPcd215 b = (MediatorPcd215) a; return b.typeCons; } else if (a instanceof MediatorPcd216) { MediatorPcd216 b = (MediatorPcd216) a; return b.typeCons; } else if (a instanceof MediatorPcd217) { MediatorPcd217 b = (MediatorPcd217) a; return b.typeCons; } else if (a instanceof MediatorPcd218) { MediatorPcd218 b = (MediatorPcd218) a; return b.typeCons; } else if (a instanceof MediatorPcd219) { MediatorPcd219 b = (MediatorPcd219) a; return b.typeCons; } else if (a instanceof MediatorPcd220) { MediatorPcd220 b = (MediatorPcd220) a; return b.typeCons; } else if (a instanceof MediatorPcd221) { MediatorPcd221 b = (MediatorPcd221) a; return b.typeCons; } else if (a instanceof MediatorPcd222) { MediatorPcd222 b = (MediatorPcd222) a; return b.typeCons; } else if (a instanceof MediatorPcd223) { MediatorPcd223 b = (MediatorPcd223) a; return b.typeCons; } return ""; } %>! add additional code <% private Boolean getIsMediator(AtomicModelImpl a) { if (a instanceof DataCenterCP) { DataCenterCP b = (DataCenterCP) a; return b.isMediator; } else if (a instanceof CommandAndControlSJC) { CommandAndControlSJC b = (CommandAndControlSJC) a; return b.isMediator; } else if (a instanceof GroundStation) { GroundStation b = (GroundStation) a; return b.isMediator; } else if (a instanceof Satellite) { Satellite b = (Satellite) a; return b.isMediator; } else if (a instanceof Mediator1) { Mediator1 b = (Mediator1) a; return b.isMediator; } else if (a instanceof Mediator2) { Mediator2 b = (Mediator2) a; return b.isMediator; } else if (a instanceof Mediator3) { Mediator3 b = (Mediator3) a; return b.isMediator; } else if (a instanceof Mediator4) { Mediator4 b = (Mediator4) a; return b.isMediator; } else if (a instanceof Pcd30869) { Pcd30869 b = (Pcd30869) a; return b.isMediator; } else if (a instanceof Pcd30870) { Pcd30870 b = (Pcd30870) a; return b.isMediator; } else if (a instanceof Pcd30871) { Pcd30871 b = (Pcd30871) a; return b.isMediator; } else if (a instanceof Pcd30873) { Pcd30873 b = (Pcd30873) a; return b.isMediator; } else if (a instanceof Pcd30879) { Pcd30879 b = (Pcd30879) a; return b.isMediator; } else if (a instanceof Pcd30881) { Pcd30881 b = (Pcd30881) a; return b.isMediator; } else if (a instanceof Pcd30882) { Pcd30882 b = (Pcd30882) a; return b.isMediator; } else if (a instanceof Pcd30948) { Pcd30948 b = (Pcd30948) a; return b.isMediator; } else if (a instanceof Pcd31000) { Pcd31000 b = (Pcd31000) a; return b.isMediator; } else if (a instanceof Pcd31006) { Pcd31006 b = (Pcd31006) a; return b.isMediator; } else if (a instanceof Pcd31111) { Pcd31111 b = (Pcd31111) a; return b.isMediator; } else if (a instanceof Pcd31112) { Pcd31112 b = (Pcd31112) a; return b.isMediator; } else if (a instanceof Pcd31113) { Pcd31113 b = (Pcd31113) a; return b.isMediator; } else if (a instanceof Pcd31114) { Pcd31114 b = (Pcd31114) a; return b.isMediator; } else if (a instanceof Pcd31115) { Pcd31115 b = (Pcd31115) a; return b.isMediator; } else if (a instanceof Pcd31116) { Pcd31116 b = (Pcd31116) a; return b.isMediator; } else if (a instanceof Pcd31117) { Pcd31117 b = (Pcd31117) a; return b.isMediator; } else if (a instanceof Pcd31118) { Pcd31118 b = (Pcd31118) a; return b.isMediator; } else if (a instanceof Pcd31119) { Pcd31119 b = (Pcd31119) a; return b.isMediator; } else if (a instanceof Pcd31132) { Pcd31132 b = (Pcd31132) a; return b.isMediator; } else if (a instanceof Pcd31709) { Pcd31709 b = (Pcd31709) a; return b.isMediator; } else if (a instanceof Pcd31770) { Pcd31770 b = (Pcd31770) a; return b.isMediator; } else if (a instanceof Pcd31804) { Pcd31804 b = (Pcd31804) a; return b.isMediator; } else if (a instanceof Pcd31805) { Pcd31805 b = (Pcd31805) a; return b.isMediator; } else if (a instanceof Pcd31807) { Pcd31807 b = (Pcd31807) a; return b.isMediator; } else if (a instanceof Pcd31808) { Pcd31808 b = (Pcd31808) a; return b.isMediator; } else if (a instanceof Pcd31809) { Pcd31809 b = (Pcd31809) a; return b.isMediator; } else if (a instanceof Pcd31810) { Pcd31810 b = (Pcd31810) a; return b.isMediator; } else if (a instanceof Pcd31811) { Pcd31811 b = (Pcd31811) a; return b.isMediator; } else if (a instanceof Pcd31812) { Pcd31812 b = (Pcd31812) a; return b.isMediator; } else if (a instanceof Pcd31814) { Pcd31814 b = (Pcd31814) a; return b.isMediator; } else if (a instanceof Pcd31817) { Pcd31817 b = (Pcd31817) a; return b.isMediator; } else if (a instanceof Pcd31819) { Pcd31819 b = (Pcd31819) a; return b.isMediator; } else if (a instanceof Pcd31820) { Pcd31820 b = (Pcd31820) a; return b.isMediator; } else if (a instanceof Pcd31821) { Pcd31821 b = (Pcd31821) a; return b.isMediator; } else if (a instanceof Pcd31822) { Pcd31822 b = (Pcd31822) a; return b.isMediator; } else if (a instanceof Pcd31824) { Pcd31824 b = (Pcd31824) a; return b.isMediator; } else if (a instanceof Pcd31826) { Pcd31826 b = (Pcd31826) a; return b.isMediator; } else if (a instanceof Pcd31827) { Pcd31827 b = (Pcd31827) a; return b.isMediator; } else if (a instanceof Pcd31828) { Pcd31828 b = (Pcd31828) a; return b.isMediator; } else if (a instanceof Pcd31829) { Pcd31829 b = (Pcd31829) a; return b.isMediator; } else if (a instanceof Pcd31830) { Pcd31830 b = (Pcd31830) a; return b.isMediator; } else if (a instanceof Pcd31834) { Pcd31834 b = (Pcd31834) a; return b.isMediator; } else if (a instanceof Pcd31835) { Pcd31835 b = (Pcd31835) a; return b.isMediator; } else if (a instanceof Pcd31836) { Pcd31836 b = (Pcd31836) a; return b.isMediator; } else if (a instanceof Pcd31837) { Pcd31837 b = (Pcd31837) a; return b.isMediator; } else if (a instanceof Pcd31839) { Pcd31839 b = (Pcd31839) a; return b.isMediator; } else if (a instanceof Pcd31841) { Pcd31841 b = (Pcd31841) a; return b.isMediator; } else if (a instanceof Pcd31842) { Pcd31842 b = (Pcd31842) a; return b.isMediator; } else if (a instanceof Pcd31844) { Pcd31844 b = (Pcd31844) a; return b.isMediator; } else if (a instanceof Pcd31845) { Pcd31845 b = (Pcd31845) a; return b.isMediator; } else if (a instanceof Pcd31847) { Pcd31847 b = (Pcd31847) a; return b.isMediator; } else if (a instanceof Pcd31848) { Pcd31848 b = (Pcd31848) a; return b.isMediator; } else if (a instanceof Pcd31849) { Pcd31849 b = (Pcd31849) a; return b.isMediator; } else if (a instanceof Pcd31851) { Pcd31851 b = (Pcd31851) a; return b.isMediator; } else if (a instanceof Pcd31852) { Pcd31852 b = (Pcd31852) a; return b.isMediator; } else if (a instanceof Pcd31853) { Pcd31853 b = (Pcd31853) a; return b.isMediator; } else if (a instanceof Pcd31854) { Pcd31854 b = (Pcd31854) a; return b.isMediator; } else if (a instanceof Pcd31856) { Pcd31856 b = (Pcd31856) a; return b.isMediator; } else if (a instanceof Pcd31858) { Pcd31858 b = (Pcd31858) a; return b.isMediator; } else if (a instanceof Pcd32534) { Pcd32534 b = (Pcd32534) a; return b.isMediator; } else if (a instanceof Pcd32537) { Pcd32537 b = (Pcd32537) a; return b.isMediator; } else if (a instanceof Pcd32539) { Pcd32539 b = (Pcd32539) a; return b.isMediator; } else if (a instanceof Pcd32543) { Pcd32543 b = (Pcd32543) a; return b.isMediator; } else if (a instanceof Pcd32484) { Pcd32484 b = (Pcd32484) a; return b.isMediator; } else if (a instanceof Pcd30900) { Pcd30900 b = (Pcd30900) a; return b.isMediator; } else if (a instanceof Pcd30901) { Pcd30901 b = (Pcd30901) a; return b.isMediator; } else if (a instanceof Pcd30960) { Pcd30960 b = (Pcd30960) a; return b.isMediator; } else if (a instanceof Pcd31020) { Pcd31020 b = (Pcd31020) a; return b.isMediator; } else if (a instanceof Pcd31021) { Pcd31021 b = (Pcd31021) a; return b.isMediator; } else if (a instanceof Pcd31023) { Pcd31023 b = (Pcd31023) a; return b.isMediator; } else if (a instanceof Pcd31025) { Pcd31025 b = (Pcd31025) a; return b.isMediator; } else if (a instanceof Pcd31029) { Pcd31029 b = (Pcd31029) a; return b.isMediator; } else if (a instanceof Pcd31071) { Pcd31071 b = (Pcd31071) a; return b.isMediator; } else if (a instanceof Pcd31074) { Pcd31074 b = (Pcd31074) a; return b.isMediator; } else if (a instanceof Pcd31075) { Pcd31075 b = (Pcd31075) a; return b.isMediator; } else if (a instanceof Pcd31077) { Pcd31077 b = (Pcd31077) a; return b.isMediator; } else if (a instanceof Pcd31078) { Pcd31078 b = (Pcd31078) a; return b.isMediator; } else if (a instanceof Pcd31079) { Pcd31079 b = (Pcd31079) a; return b.isMediator; } else if (a instanceof Pcd31081) { Pcd31081 b = (Pcd31081) a; return b.isMediator; } else if (a instanceof Pcd31082) { Pcd31082 b = (Pcd31082) a; return b.isMediator; } else if (a instanceof Pcd31085) { Pcd31085 b = (Pcd31085) a; return b.isMediator; } else if (a instanceof Pcd31086) { Pcd31086 b = (Pcd31086) a; return b.isMediator; } else if (a instanceof Pcd31088) { Pcd31088 b = (Pcd31088) a; return b.isMediator; } else if (a instanceof Pcd31089) { Pcd31089 b = (Pcd31089) a; return b.isMediator; } else if (a instanceof Pcd31090) { Pcd31090 b = (Pcd31090) a; return b.isMediator; } else if (a instanceof Pcd31091) { Pcd31091 b = (Pcd31091) a; return b.isMediator; } else if (a instanceof Pcd31092) { Pcd31092 b = (Pcd31092) a; return b.isMediator; } else if (a instanceof Pcd31093) { Pcd31093 b = (Pcd31093) a; return b.isMediator; } else if (a instanceof Pcd31094) { Pcd31094 b = (Pcd31094) a; return b.isMediator; } else if (a instanceof Pcd31095) { Pcd31095 b = (Pcd31095) a; return b.isMediator; } else if (a instanceof Pcd31096) { Pcd31096 b = (Pcd31096) a; return b.isMediator; } else if (a instanceof Pcd31097) { Pcd31097 b = (Pcd31097) a; return b.isMediator; } else if (a instanceof Pcd31098) { Pcd31098 b = (Pcd31098) a; return b.isMediator; } else if (a instanceof Pcd31099) { Pcd31099 b = (Pcd31099) a; return b.isMediator; } else if (a instanceof Pcd31100) { Pcd31100 b = (Pcd31100) a; return b.isMediator; } else if (a instanceof Pcd31101) { Pcd31101 b = (Pcd31101) a; return b.isMediator; } else if (a instanceof Pcd31102) { Pcd31102 b = (Pcd31102) a; return b.isMediator; } else if (a instanceof Pcd31764) { Pcd31764 b = (Pcd31764) a; return b.isMediator; } else if (a instanceof Pcd31780) { Pcd31780 b = (Pcd31780) a; return b.isMediator; } else if (a instanceof Pcd31782) { Pcd31782 b = (Pcd31782) a; return b.isMediator; } else if (a instanceof Pcd31783) { Pcd31783 b = (Pcd31783) a; return b.isMediator; } else if (a instanceof Pcd31784) { Pcd31784 b = (Pcd31784) a; return b.isMediator; } else if (a instanceof Pcd31785) { Pcd31785 b = (Pcd31785) a; return b.isMediator; } else if (a instanceof Pcd31786) { Pcd31786 b = (Pcd31786) a; return b.isMediator; } else if (a instanceof Pcd30800) { Pcd30800 b = (Pcd30800) a; return b.isMediator; } else if (a instanceof Pcd30885) { Pcd30885 b = (Pcd30885) a; return b.isMediator; } else if (a instanceof Pcd30887) { Pcd30887 b = (Pcd30887) a; return b.isMediator; } else if (a instanceof Pcd30888) { Pcd30888 b = (Pcd30888) a; return b.isMediator; } else if (a instanceof Pcd30890) { Pcd30890 b = (Pcd30890) a; return b.isMediator; } else if (a instanceof Pcd30975) { Pcd30975 b = (Pcd30975) a; return b.isMediator; } else if (a instanceof Pcd31744) { Pcd31744 b = (Pcd31744) a; return b.isMediator; } else if (a instanceof Pcd31745) { Pcd31745 b = (Pcd31745) a; return b.isMediator; } else if (a instanceof Pcd31746) { Pcd31746 b = (Pcd31746) a; return b.isMediator; } else if (a instanceof Pcd31801) { Pcd31801 b = (Pcd31801) a; return b.isMediator; } else if (a instanceof MediatorPcd1) { MediatorPcd1 b = (MediatorPcd1) a; return b.isMediator; } else if (a instanceof MediatorPcd2) { MediatorPcd2 b = (MediatorPcd2) a; return b.isMediator; } else if (a instanceof MediatorPcd3) { MediatorPcd3 b = (MediatorPcd3) a; return b.isMediator; } else if (a instanceof MediatorPcd4) { MediatorPcd4 b = (MediatorPcd4) a; return b.isMediator; } else if (a instanceof MediatorPcd5) { MediatorPcd5 b = (MediatorPcd5) a; return b.isMediator; } else if (a instanceof MediatorPcd6) { MediatorPcd6 b = (MediatorPcd6) a; return b.isMediator; } else if (a instanceof MediatorPcd7) { MediatorPcd7 b = (MediatorPcd7) a; return b.isMediator; } else if (a instanceof MediatorPcd8) { MediatorPcd8 b = (MediatorPcd8) a; return b.isMediator; } else if (a instanceof MediatorPcd9) { MediatorPcd9 b = (MediatorPcd9) a; return b.isMediator; } else if (a instanceof MediatorPcd10) { MediatorPcd10 b = (MediatorPcd10) a; return b.isMediator; } else if (a instanceof MediatorPcd11) { MediatorPcd11 b = (MediatorPcd11) a; return b.isMediator; } else if (a instanceof MediatorPcd12) { MediatorPcd12 b = (MediatorPcd12) a; return b.isMediator; } else if (a instanceof MediatorPcd13) { MediatorPcd13 b = (MediatorPcd13) a; return b.isMediator; } else if (a instanceof MediatorPcd14) { MediatorPcd14 b = (MediatorPcd14) a; return b.isMediator; } else if (a instanceof MediatorPcd15) { MediatorPcd15 b = (MediatorPcd15) a; return b.isMediator; } else if (a instanceof MediatorPcd16) { MediatorPcd16 b = (MediatorPcd16) a; return b.isMediator; } else if (a instanceof MediatorPcd17) { MediatorPcd17 b = (MediatorPcd17) a; return b.isMediator; } else if (a instanceof MediatorPcd18) { MediatorPcd18 b = (MediatorPcd18) a; return b.isMediator; } else if (a instanceof MediatorPcd19) { MediatorPcd19 b = (MediatorPcd19) a; return b.isMediator; } else if (a instanceof MediatorPcd20) { MediatorPcd20 b = (MediatorPcd20) a; return b.isMediator; } else if (a instanceof MediatorPcd21) { MediatorPcd21 b = (MediatorPcd21) a; return b.isMediator; } else if (a instanceof MediatorPcd22) { MediatorPcd22 b = (MediatorPcd22) a; return b.isMediator; } else if (a instanceof MediatorPcd23) { MediatorPcd23 b = (MediatorPcd23) a; return b.isMediator; } else if (a instanceof MediatorPcd24) { MediatorPcd24 b = (MediatorPcd24) a; return b.isMediator; } else if (a instanceof MediatorPcd25) { MediatorPcd25 b = (MediatorPcd25) a; return b.isMediator; } else if (a instanceof MediatorPcd26) { MediatorPcd26 b = (MediatorPcd26) a; return b.isMediator; } else if (a instanceof MediatorPcd27) { MediatorPcd27 b = (MediatorPcd27) a; return b.isMediator; } else if (a instanceof MediatorPcd28) { MediatorPcd28 b = (MediatorPcd28) a; return b.isMediator; } else if (a instanceof MediatorPcd29) { MediatorPcd29 b = (MediatorPcd29) a; return b.isMediator; } else if (a instanceof MediatorPcd30) { MediatorPcd30 b = (MediatorPcd30) a; return b.isMediator; } else if (a instanceof MediatorPcd31) { MediatorPcd31 b = (MediatorPcd31) a; return b.isMediator; } else if (a instanceof MediatorPcd32) { MediatorPcd32 b = (MediatorPcd32) a; return b.isMediator; } else if (a instanceof MediatorPcd33) { MediatorPcd33 b = (MediatorPcd33) a; return b.isMediator; } else if (a instanceof MediatorPcd34) { MediatorPcd34 b = (MediatorPcd34) a; return b.isMediator; } else if (a instanceof MediatorPcd35) { MediatorPcd35 b = (MediatorPcd35) a; return b.isMediator; } else if (a instanceof MediatorPcd36) { MediatorPcd36 b = (MediatorPcd36) a; return b.isMediator; } else if (a instanceof MediatorPcd37) { MediatorPcd37 b = (MediatorPcd37) a; return b.isMediator; } else if (a instanceof MediatorPcd38) { MediatorPcd38 b = (MediatorPcd38) a; return b.isMediator; } else if (a instanceof MediatorPcd39) { MediatorPcd39 b = (MediatorPcd39) a; return b.isMediator; } else if (a instanceof MediatorPcd40) { MediatorPcd40 b = (MediatorPcd40) a; return b.isMediator; } else if (a instanceof MediatorPcd41) { MediatorPcd41 b = (MediatorPcd41) a; return b.isMediator; } else if (a instanceof MediatorPcd42) { MediatorPcd42 b = (MediatorPcd42) a; return b.isMediator; } else if (a instanceof MediatorPcd43) { MediatorPcd43 b = (MediatorPcd43) a; return b.isMediator; } else if (a instanceof MediatorPcd44) { MediatorPcd44 b = (MediatorPcd44) a; return b.isMediator; } else if (a instanceof MediatorPcd45) { MediatorPcd45 b = (MediatorPcd45) a; return b.isMediator; } else if (a instanceof MediatorPcd46) { MediatorPcd46 b = (MediatorPcd46) a; return b.isMediator; } else if (a instanceof MediatorPcd47) { MediatorPcd47 b = (MediatorPcd47) a; return b.isMediator; } else if (a instanceof MediatorPcd48) { MediatorPcd48 b = (MediatorPcd48) a; return b.isMediator; } else if (a instanceof MediatorPcd49) { MediatorPcd49 b = (MediatorPcd49) a; return b.isMediator; } else if (a instanceof MediatorPcd50) { MediatorPcd50 b = (MediatorPcd50) a; return b.isMediator; } else if (a instanceof MediatorPcd51) { MediatorPcd51 b = (MediatorPcd51) a; return b.isMediator; } else if (a instanceof MediatorPcd52) { MediatorPcd52 b = (MediatorPcd52) a; return b.isMediator; } else if (a instanceof MediatorPcd53) { MediatorPcd53 b = (MediatorPcd53) a; return b.isMediator; } else if (a instanceof MediatorPcd54) { MediatorPcd54 b = (MediatorPcd54) a; return b.isMediator; } else if (a instanceof MediatorPcd55) { MediatorPcd55 b = (MediatorPcd55) a; return b.isMediator; } else if (a instanceof MediatorPcd56) { MediatorPcd56 b = (MediatorPcd56) a; return b.isMediator; } else if (a instanceof MediatorPcd57) { MediatorPcd57 b = (MediatorPcd57) a; return b.isMediator; } else if (a instanceof MediatorPcd58) { MediatorPcd58 b = (MediatorPcd58) a; return b.isMediator; } else if (a instanceof MediatorPcd59) { MediatorPcd59 b = (MediatorPcd59) a; return b.isMediator; } else if (a instanceof MediatorPcd60) { MediatorPcd60 b = (MediatorPcd60) a; return b.isMediator; } else if (a instanceof MediatorPcd134) { MediatorPcd134 b = (MediatorPcd134) a; return b.isMediator; } else if (a instanceof MediatorPcd135) { MediatorPcd135 b = (MediatorPcd135) a; return b.isMediator; } else if (a instanceof MediatorPcd136) { MediatorPcd136 b = (MediatorPcd136) a; return b.isMediator; } else if (a instanceof MediatorPcd137) { MediatorPcd137 b = (MediatorPcd137) a; return b.isMediator; } else if (a instanceof MediatorPcd138) { MediatorPcd138 b = (MediatorPcd138) a; return b.isMediator; } else if (a instanceof MediatorPcd139) { MediatorPcd139 b = (MediatorPcd139) a; return b.isMediator; } else if (a instanceof MediatorPcd140) { MediatorPcd140 b = (MediatorPcd140) a; return b.isMediator; } else if (a instanceof MediatorPcd141) { MediatorPcd141 b = (MediatorPcd141) a; return b.isMediator; } else if (a instanceof MediatorPcd142) { MediatorPcd142 b = (MediatorPcd142) a; return b.isMediator; } else if (a instanceof MediatorPcd143) { MediatorPcd143 b = (MediatorPcd143) a; return b.isMediator; } else if (a instanceof MediatorPcd144) { MediatorPcd144 b = (MediatorPcd144) a; return b.isMediator; } else if (a instanceof MediatorPcd145) { MediatorPcd145 b = (MediatorPcd145) a; return b.isMediator; } else if (a instanceof MediatorPcd146) { MediatorPcd146 b = (MediatorPcd146) a; return b.isMediator; } else if (a instanceof MediatorPcd147) { MediatorPcd147 b = (MediatorPcd147) a; return b.isMediator; } else if (a instanceof MediatorPcd148) { MediatorPcd148 b = (MediatorPcd148) a; return b.isMediator; } else if (a instanceof MediatorPcd149) { MediatorPcd149 b = (MediatorPcd149) a; return b.isMediator; } else if (a instanceof MediatorPcd150) { MediatorPcd150 b = (MediatorPcd150) a; return b.isMediator; } else if (a instanceof MediatorPcd151) { MediatorPcd151 b = (MediatorPcd151) a; return b.isMediator; } else if (a instanceof MediatorPcd152) { MediatorPcd152 b = (MediatorPcd152) a; return b.isMediator; } else if (a instanceof MediatorPcd153) { MediatorPcd153 b = (MediatorPcd153) a; return b.isMediator; } else if (a instanceof MediatorPcd154) { MediatorPcd154 b = (MediatorPcd154) a; return b.isMediator; } else if (a instanceof MediatorPcd155) { MediatorPcd155 b = (MediatorPcd155) a; return b.isMediator; } else if (a instanceof MediatorPcd156) { MediatorPcd156 b = (MediatorPcd156) a; return b.isMediator; } else if (a instanceof MediatorPcd157) { MediatorPcd157 b = (MediatorPcd157) a; return b.isMediator; } else if (a instanceof MediatorPcd158) { MediatorPcd158 b = (MediatorPcd158) a; return b.isMediator; } else if (a instanceof MediatorPcd159) { MediatorPcd159 b = (MediatorPcd159) a; return b.isMediator; } else if (a instanceof MediatorPcd160) { MediatorPcd160 b = (MediatorPcd160) a; return b.isMediator; } else if (a instanceof MediatorPcd161) { MediatorPcd161 b = (MediatorPcd161) a; return b.isMediator; } else if (a instanceof MediatorPcd162) { MediatorPcd162 b = (MediatorPcd162) a; return b.isMediator; } else if (a instanceof MediatorPcd163) { MediatorPcd163 b = (MediatorPcd163) a; return b.isMediator; } else if (a instanceof MediatorPcd164) { MediatorPcd164 b = (MediatorPcd164) a; return b.isMediator; } else if (a instanceof MediatorPcd165) { MediatorPcd165 b = (MediatorPcd165) a; return b.isMediator; } else if (a instanceof MediatorPcd166) { MediatorPcd166 b = (MediatorPcd166) a; return b.isMediator; } else if (a instanceof MediatorPcd167) { MediatorPcd167 b = (MediatorPcd167) a; return b.isMediator; } else if (a instanceof MediatorPcd168) { MediatorPcd168 b = (MediatorPcd168) a; return b.isMediator; } else if (a instanceof MediatorPcd169) { MediatorPcd169 b = (MediatorPcd169) a; return b.isMediator; } else if (a instanceof MediatorPcd170) { MediatorPcd170 b = (MediatorPcd170) a; return b.isMediator; } else if (a instanceof MediatorPcd171) { MediatorPcd171 b = (MediatorPcd171) a; return b.isMediator; } else if (a instanceof MediatorPcd172) { MediatorPcd172 b = (MediatorPcd172) a; return b.isMediator; } else if (a instanceof MediatorPcd173) { MediatorPcd173 b = (MediatorPcd173) a; return b.isMediator; } else if (a instanceof MediatorPcd174) { MediatorPcd174 b = (MediatorPcd174) a; return b.isMediator; } else if (a instanceof MediatorPcd175) { MediatorPcd175 b = (MediatorPcd175) a; return b.isMediator; } else if (a instanceof MediatorPcd176) { MediatorPcd176 b = (MediatorPcd176) a; return b.isMediator; } else if (a instanceof MediatorPcd214) { MediatorPcd214 b = (MediatorPcd214) a; return b.isMediator; } else if (a instanceof MediatorPcd215) { MediatorPcd215 b = (MediatorPcd215) a; return b.isMediator; } else if (a instanceof MediatorPcd216) { MediatorPcd216 b = (MediatorPcd216) a; return b.isMediator; } else if (a instanceof MediatorPcd217) { MediatorPcd217 b = (MediatorPcd217) a; return b.isMediator; } else if (a instanceof MediatorPcd218) { MediatorPcd218 b = (MediatorPcd218) a; return b.isMediator; } else if (a instanceof MediatorPcd219) { MediatorPcd219 b = (MediatorPcd219) a; return b.isMediator; } else if (a instanceof MediatorPcd220) { MediatorPcd220 b = (MediatorPcd220) a; return b.isMediator; } else if (a instanceof MediatorPcd221) { MediatorPcd221 b = (MediatorPcd221) a; return b.isMediator; } else if (a instanceof MediatorPcd222) { MediatorPcd222 b = (MediatorPcd222) a; return b.isMediator; } else if (a instanceof MediatorPcd223) { MediatorPcd223 b = (MediatorPcd223) a; return b.isMediator; } return false; } %>! add additional code <% private void holdInInitialState(AtomicModelImpl a) { if (a instanceof DataCenterCP) { DataCenterCP b = (DataCenterCP) a; b.holdIn("s0",1.0); return; } else if (a instanceof CommandAndControlSJC) { CommandAndControlSJC b = (CommandAndControlSJC) a; b.holdIn("s0",1.0); return; } else if (a instanceof GroundStation) { GroundStation b = (GroundStation) a; b.holdIn("s0",1.0); return; } else if (a instanceof Satellite) { Satellite b = (Satellite) a; b.holdIn("s0",1.0); return; } else if (a instanceof Mediator1) { Mediator1 b = (Mediator1) a; b.holdIn("s0",1.0); return; } else if (a instanceof Mediator2) { Mediator2 b = (Mediator2) a; b.holdIn("s0",1.0); return; } else if (a instanceof Mediator3) { Mediator3 b = (Mediator3) a; b.holdIn("s0",1.0); return; } else if (a instanceof Mediator4) { Mediator4 b = (Mediator4) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30869) { Pcd30869 b = (Pcd30869) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30870) { Pcd30870 b = (Pcd30870) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30871) { Pcd30871 b = (Pcd30871) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30873) { Pcd30873 b = (Pcd30873) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30879) { Pcd30879 b = (Pcd30879) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30881) { Pcd30881 b = (Pcd30881) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30882) { Pcd30882 b = (Pcd30882) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30948) { Pcd30948 b = (Pcd30948) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31000) { Pcd31000 b = (Pcd31000) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31006) { Pcd31006 b = (Pcd31006) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31111) { Pcd31111 b = (Pcd31111) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31112) { Pcd31112 b = (Pcd31112) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31113) { Pcd31113 b = (Pcd31113) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31114) { Pcd31114 b = (Pcd31114) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31115) { Pcd31115 b = (Pcd31115) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31116) { Pcd31116 b = (Pcd31116) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31117) { Pcd31117 b = (Pcd31117) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31118) { Pcd31118 b = (Pcd31118) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31119) { Pcd31119 b = (Pcd31119) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31132) { Pcd31132 b = (Pcd31132) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31709) { Pcd31709 b = (Pcd31709) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31770) { Pcd31770 b = (Pcd31770) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31804) { Pcd31804 b = (Pcd31804) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31805) { Pcd31805 b = (Pcd31805) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31807) { Pcd31807 b = (Pcd31807) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31808) { Pcd31808 b = (Pcd31808) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31809) { Pcd31809 b = (Pcd31809) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31810) { Pcd31810 b = (Pcd31810) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31811) { Pcd31811 b = (Pcd31811) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31812) { Pcd31812 b = (Pcd31812) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31814) { Pcd31814 b = (Pcd31814) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31817) { Pcd31817 b = (Pcd31817) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31819) { Pcd31819 b = (Pcd31819) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31820) { Pcd31820 b = (Pcd31820) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31821) { Pcd31821 b = (Pcd31821) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31822) { Pcd31822 b = (Pcd31822) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31824) { Pcd31824 b = (Pcd31824) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31826) { Pcd31826 b = (Pcd31826) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31827) { Pcd31827 b = (Pcd31827) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31828) { Pcd31828 b = (Pcd31828) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31829) { Pcd31829 b = (Pcd31829) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31830) { Pcd31830 b = (Pcd31830) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31834) { Pcd31834 b = (Pcd31834) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31835) { Pcd31835 b = (Pcd31835) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31836) { Pcd31836 b = (Pcd31836) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31837) { Pcd31837 b = (Pcd31837) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31839) { Pcd31839 b = (Pcd31839) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31841) { Pcd31841 b = (Pcd31841) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31842) { Pcd31842 b = (Pcd31842) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31844) { Pcd31844 b = (Pcd31844) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31845) { Pcd31845 b = (Pcd31845) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31847) { Pcd31847 b = (Pcd31847) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31848) { Pcd31848 b = (Pcd31848) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31849) { Pcd31849 b = (Pcd31849) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31851) { Pcd31851 b = (Pcd31851) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31852) { Pcd31852 b = (Pcd31852) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31853) { Pcd31853 b = (Pcd31853) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31854) { Pcd31854 b = (Pcd31854) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31856) { Pcd31856 b = (Pcd31856) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31858) { Pcd31858 b = (Pcd31858) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd32534) { Pcd32534 b = (Pcd32534) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd32537) { Pcd32537 b = (Pcd32537) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd32539) { Pcd32539 b = (Pcd32539) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd32543) { Pcd32543 b = (Pcd32543) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd32484) { Pcd32484 b = (Pcd32484) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30900) { Pcd30900 b = (Pcd30900) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30901) { Pcd30901 b = (Pcd30901) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30960) { Pcd30960 b = (Pcd30960) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31020) { Pcd31020 b = (Pcd31020) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31021) { Pcd31021 b = (Pcd31021) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31023) { Pcd31023 b = (Pcd31023) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31025) { Pcd31025 b = (Pcd31025) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31029) { Pcd31029 b = (Pcd31029) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31071) { Pcd31071 b = (Pcd31071) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31074) { Pcd31074 b = (Pcd31074) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31075) { Pcd31075 b = (Pcd31075) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31077) { Pcd31077 b = (Pcd31077) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31078) { Pcd31078 b = (Pcd31078) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31079) { Pcd31079 b = (Pcd31079) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31081) { Pcd31081 b = (Pcd31081) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31082) { Pcd31082 b = (Pcd31082) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31085) { Pcd31085 b = (Pcd31085) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31086) { Pcd31086 b = (Pcd31086) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31088) { Pcd31088 b = (Pcd31088) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31089) { Pcd31089 b = (Pcd31089) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31090) { Pcd31090 b = (Pcd31090) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31091) { Pcd31091 b = (Pcd31091) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31092) { Pcd31092 b = (Pcd31092) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31093) { Pcd31093 b = (Pcd31093) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31094) { Pcd31094 b = (Pcd31094) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31095) { Pcd31095 b = (Pcd31095) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31096) { Pcd31096 b = (Pcd31096) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31097) { Pcd31097 b = (Pcd31097) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31098) { Pcd31098 b = (Pcd31098) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31099) { Pcd31099 b = (Pcd31099) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31100) { Pcd31100 b = (Pcd31100) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31101) { Pcd31101 b = (Pcd31101) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31102) { Pcd31102 b = (Pcd31102) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31764) { Pcd31764 b = (Pcd31764) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31780) { Pcd31780 b = (Pcd31780) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31782) { Pcd31782 b = (Pcd31782) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31783) { Pcd31783 b = (Pcd31783) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31784) { Pcd31784 b = (Pcd31784) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31785) { Pcd31785 b = (Pcd31785) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31786) { Pcd31786 b = (Pcd31786) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30800) { Pcd30800 b = (Pcd30800) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30885) { Pcd30885 b = (Pcd30885) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30887) { Pcd30887 b = (Pcd30887) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30888) { Pcd30888 b = (Pcd30888) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30890) { Pcd30890 b = (Pcd30890) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd30975) { Pcd30975 b = (Pcd30975) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31744) { Pcd31744 b = (Pcd31744) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31745) { Pcd31745 b = (Pcd31745) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31746) { Pcd31746 b = (Pcd31746) a; b.holdIn("s0",1.0); return; } else if (a instanceof Pcd31801) { Pcd31801 b = (Pcd31801) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd1) { MediatorPcd1 b = (MediatorPcd1) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd2) { MediatorPcd2 b = (MediatorPcd2) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd3) { MediatorPcd3 b = (MediatorPcd3) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd4) { MediatorPcd4 b = (MediatorPcd4) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd5) { MediatorPcd5 b = (MediatorPcd5) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd6) { MediatorPcd6 b = (MediatorPcd6) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd7) { MediatorPcd7 b = (MediatorPcd7) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd8) { MediatorPcd8 b = (MediatorPcd8) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd9) { MediatorPcd9 b = (MediatorPcd9) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd10) { MediatorPcd10 b = (MediatorPcd10) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd11) { MediatorPcd11 b = (MediatorPcd11) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd12) { MediatorPcd12 b = (MediatorPcd12) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd13) { MediatorPcd13 b = (MediatorPcd13) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd14) { MediatorPcd14 b = (MediatorPcd14) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd15) { MediatorPcd15 b = (MediatorPcd15) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd16) { MediatorPcd16 b = (MediatorPcd16) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd17) { MediatorPcd17 b = (MediatorPcd17) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd18) { MediatorPcd18 b = (MediatorPcd18) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd19) { MediatorPcd19 b = (MediatorPcd19) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd20) { MediatorPcd20 b = (MediatorPcd20) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd21) { MediatorPcd21 b = (MediatorPcd21) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd22) { MediatorPcd22 b = (MediatorPcd22) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd23) { MediatorPcd23 b = (MediatorPcd23) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd24) { MediatorPcd24 b = (MediatorPcd24) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd25) { MediatorPcd25 b = (MediatorPcd25) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd26) { MediatorPcd26 b = (MediatorPcd26) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd27) { MediatorPcd27 b = (MediatorPcd27) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd28) { MediatorPcd28 b = (MediatorPcd28) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd29) { MediatorPcd29 b = (MediatorPcd29) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd30) { MediatorPcd30 b = (MediatorPcd30) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd31) { MediatorPcd31 b = (MediatorPcd31) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd32) { MediatorPcd32 b = (MediatorPcd32) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd33) { MediatorPcd33 b = (MediatorPcd33) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd34) { MediatorPcd34 b = (MediatorPcd34) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd35) { MediatorPcd35 b = (MediatorPcd35) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd36) { MediatorPcd36 b = (MediatorPcd36) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd37) { MediatorPcd37 b = (MediatorPcd37) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd38) { MediatorPcd38 b = (MediatorPcd38) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd39) { MediatorPcd39 b = (MediatorPcd39) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd40) { MediatorPcd40 b = (MediatorPcd40) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd41) { MediatorPcd41 b = (MediatorPcd41) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd42) { MediatorPcd42 b = (MediatorPcd42) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd43) { MediatorPcd43 b = (MediatorPcd43) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd44) { MediatorPcd44 b = (MediatorPcd44) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd45) { MediatorPcd45 b = (MediatorPcd45) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd46) { MediatorPcd46 b = (MediatorPcd46) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd47) { MediatorPcd47 b = (MediatorPcd47) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd48) { MediatorPcd48 b = (MediatorPcd48) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd49) { MediatorPcd49 b = (MediatorPcd49) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd50) { MediatorPcd50 b = (MediatorPcd50) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd51) { MediatorPcd51 b = (MediatorPcd51) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd52) { MediatorPcd52 b = (MediatorPcd52) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd53) { MediatorPcd53 b = (MediatorPcd53) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd54) { MediatorPcd54 b = (MediatorPcd54) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd55) { MediatorPcd55 b = (MediatorPcd55) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd56) { MediatorPcd56 b = (MediatorPcd56) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd57) { MediatorPcd57 b = (MediatorPcd57) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd58) { MediatorPcd58 b = (MediatorPcd58) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd59) { MediatorPcd59 b = (MediatorPcd59) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd60) { MediatorPcd60 b = (MediatorPcd60) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd134) { MediatorPcd134 b = (MediatorPcd134) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd135) { MediatorPcd135 b = (MediatorPcd135) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd136) { MediatorPcd136 b = (MediatorPcd136) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd137) { MediatorPcd137 b = (MediatorPcd137) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd138) { MediatorPcd138 b = (MediatorPcd138) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd139) { MediatorPcd139 b = (MediatorPcd139) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd140) { MediatorPcd140 b = (MediatorPcd140) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd141) { MediatorPcd141 b = (MediatorPcd141) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd142) { MediatorPcd142 b = (MediatorPcd142) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd143) { MediatorPcd143 b = (MediatorPcd143) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd144) { MediatorPcd144 b = (MediatorPcd144) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd145) { MediatorPcd145 b = (MediatorPcd145) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd146) { MediatorPcd146 b = (MediatorPcd146) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd147) { MediatorPcd147 b = (MediatorPcd147) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd148) { MediatorPcd148 b = (MediatorPcd148) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd149) { MediatorPcd149 b = (MediatorPcd149) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd150) { MediatorPcd150 b = (MediatorPcd150) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd151) { MediatorPcd151 b = (MediatorPcd151) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd152) { MediatorPcd152 b = (MediatorPcd152) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd153) { MediatorPcd153 b = (MediatorPcd153) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd154) { MediatorPcd154 b = (MediatorPcd154) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd155) { MediatorPcd155 b = (MediatorPcd155) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd156) { MediatorPcd156 b = (MediatorPcd156) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd157) { MediatorPcd157 b = (MediatorPcd157) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd158) { MediatorPcd158 b = (MediatorPcd158) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd159) { MediatorPcd159 b = (MediatorPcd159) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd160) { MediatorPcd160 b = (MediatorPcd160) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd161) { MediatorPcd161 b = (MediatorPcd161) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd162) { MediatorPcd162 b = (MediatorPcd162) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd163) { MediatorPcd163 b = (MediatorPcd163) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd164) { MediatorPcd164 b = (MediatorPcd164) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd165) { MediatorPcd165 b = (MediatorPcd165) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd166) { MediatorPcd166 b = (MediatorPcd166) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd167) { MediatorPcd167 b = (MediatorPcd167) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd168) { MediatorPcd168 b = (MediatorPcd168) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd169) { MediatorPcd169 b = (MediatorPcd169) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd170) { MediatorPcd170 b = (MediatorPcd170) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd171) { MediatorPcd171 b = (MediatorPcd171) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd172) { MediatorPcd172 b = (MediatorPcd172) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd173) { MediatorPcd173 b = (MediatorPcd173) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd174) { MediatorPcd174 b = (MediatorPcd174) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd175) { MediatorPcd175 b = (MediatorPcd175) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd176) { MediatorPcd176 b = (MediatorPcd176) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd214) { MediatorPcd214 b = (MediatorPcd214) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd215) { MediatorPcd215 b = (MediatorPcd215) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd216) { MediatorPcd216 b = (MediatorPcd216) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd217) { MediatorPcd217 b = (MediatorPcd217) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd218) { MediatorPcd218 b = (MediatorPcd218) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd219) { MediatorPcd219 b = (MediatorPcd219) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd220) { MediatorPcd220 b = (MediatorPcd220) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd221) { MediatorPcd221 b = (MediatorPcd221) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd222) { MediatorPcd222 b = (MediatorPcd222) a; b.holdIn("s0",1.0); return; } else if (a instanceof MediatorPcd223) { MediatorPcd223 b = (MediatorPcd223) a; b.holdIn("s0",1.0); return; } return; } %>! add additional code <% private void syncModel() { try{ ArrayList<Connection> aux = new ArrayList<Connection>(); LinkedHashMap<String,String> map = aux3SyncModel(); if(!new File("Model").exists()) { new File("Model").mkdir(); } connections.clear(); for(Coupling a : getParent().getCouplings()) { Connection e = new Connection((AtomicModelImpl)a.getSource(), a.getSourcePort(), (AtomicModelImpl)a.getDestination(), a.getDestinationPort()); if ( !( e.inPort.getName().contains("Checked") || e.outClass.getName().contains("StimuliGenerator") || e.inPort.getName().contains("Remove"))) { if(e != null && e.inClass != null && e.outClass != null && e.inPort != null && e.outPort != null) { connections.add(e); } } } BufferedWriter writer = new BufferedWriter(new FileWriter(getModelsDirectory2().getAbsolutePath() + "/sosadl/"+ getName().replace("DRC","")+"REC"+Integer.toString(syncCount)+".sosadl")); writer.write(aux1SyncModel()); writer.newLine(); for(AtomicModel e : getParent().getChildren()) { if(!e.getName().contains("StimuliGenerator") && !e.getName().contains("DRC") && !e.getName().contains("ExOp") ) { writer.write(" " + e.getName() + " is " + getTypeCons((AtomicModelImpl)e)); writer.newLine(); } } writer.write(" }"); writer.newLine(); writer.write(" binding{"); writer.newLine(); writer.flush(); for(Connection e : connections) { writer.write(" unify one{ " + e.outClass.getName()+((map.containsKey(getTypeCons(e.outClass).toUpperCase()+e.outPort.getName().replaceFirst("out","").toUpperCase()))?"::"+map.get(getTypeCons(e.outClass).toUpperCase()+e.outPort.getName().replaceFirst("out","").toUpperCase()):"")+"::"+e.outPort.getName().replaceFirst("out","") + "} to one {" + e.inClass.getName()+((map.containsKey(getTypeCons(e.inClass).toUpperCase()+e.inPort.getName().replaceFirst("in","").toUpperCase()))?"::"+map.get(getTypeCons(e.inClass).toUpperCase()+e.inPort.getName().replaceFirst("in","").toUpperCase()):"")+"::" + e.inPort.getName().replaceFirst("in","")+ "}" + ((connections.indexOf(e) != connections.size()-1)? " and": "")); writer.newLine(); } writer.write(aux2SyncModel()); writer.newLine(); connections.addAll(aux); writer.close(); syncCount++; } catch (Exception e) { e.printStackTrace(); } } private String aux1SyncModel() { StringBuffer a = new StringBuffer(); a.append("with Base"); a.append("\n"); a.append("with SatelliteAmazonia3"); a.append("\n"); a.append("with Mediators"); a.append("\n"); a.append("with GroundStation"); a.append("\n"); a.append("with DataCenter"); a.append("\n"); a.append("with CommandAndControl"); a.append("\n"); a.append("with Pcd"); a.append("\n"); a.append(""); a.append("\n"); a.append("sos spaceSoSArchitectureRec" + Integer.toString(syncCount) + " is {"); a.append("\n"); a.append(" "); a.append("\n"); a.append(" architecture spaceSoSArchitectureRec" + Integer.toString(syncCount) + " () is {"); a.append("\n"); a.append(" "); a.append("\n"); a.append(" gate request is {"); a.append("\n"); a.append(" connection coordinate is in{Coordinate}"); a.append("\n"); a.append(" connection depth is out{Depth}"); a.append("\n"); a.append(" } guarantee {"); a.append("\n"); a.append(" protocol requestpact is {"); a.append("\n"); a.append(" repeat {"); a.append("\n"); a.append(" via request::coordinate receive any"); a.append("\n"); a.append(" repeat {"); a.append("\n"); a.append(" anyaction"); a.append("\n"); a.append(" }"); a.append("\n"); a.append(" via request::depth send any"); a.append("\n"); a.append(" }"); a.append("\n"); a.append(" }"); a.append("\n"); a.append(" }"); a.append("\n"); a.append(" "); a.append("\n"); a.append(" behavior coalition is compose {"); a.append("\n"); return a.toString(); } private String aux2SyncModel() { StringBuffer a = new StringBuffer(); a.append(" }"); a.append("\n"); a.append(" } guarantee {"); a.append("\n"); a.append(" property alerting is {"); a.append("\n"); a.append(" repeat {"); a.append("\n"); a.append(" repeat {"); a.append("\n"); a.append(" anyaction"); a.append("\n"); a.append(" }"); a.append("\n"); a.append(" via notification::alert send any"); a.append("\n"); a.append(" }"); a.append("\n"); a.append(" }"); a.append("\n"); a.append(" }"); a.append("\n"); a.append("}"); a.append("\n"); return a.toString(); } private LinkedHashMap<String,String> aux3SyncModel() { LinkedHashMap<String,String> a = new LinkedHashMap<String,String>(); a.put("SATELLITEAMAZONIA3POWER","satelliteState"); a.put("SATELLITEAMAZONIA3ORBIT","satelliteState"); a.put("SATELLITEAMAZONIA3TEMPERATURE","satelliteState"); a.put("SATELLITEAMAZONIA3HEIGHT","satelliteState"); a.put("SATELLITEAMAZONIA3TELECOMMAND","operation"); a.put("SATELLITEAMAZONIA3IMAGE","camera"); a.put("SATELLITEAMAZONIA3TELEMETRY","telemetry"); a.put("SATELLITEAMAZONIA3COORDINATESATELLITE","location"); a.put("SATELLITEAMAZONIA3COORDINATE","location"); a.put("SATELLITEAMAZONIA3ESTABLISHCONNECTION","establish"); a.put("SATELLITEAMAZONIA3ESTABLISHCONNECTIONGS","establish"); a.put("SATELLITEAMAZONIA3METDATA","notification"); a.put("SATELLITEAMAZONIA3QAGUADATA","notification"); a.put("SATELLITEAMAZONIA3HIDRODATA","notification"); a.put("SATELLITEAMAZONIA3AGRODATA","notification"); a.put("GROUNDSTATIONOPERATION","operation"); a.put("GROUNDSTATIONTELECOMMAND","operation"); a.put("GROUNDSTATIONTELEMETRY","sendData"); a.put("GROUNDSTATIONCOORDINATE","location"); a.put("GROUNDSTATIONESTABLISHCONNECTIONGS","establish"); a.put("DATACENTERTELEMETRY","datarequirement"); a.put("DATACENTERREQUEST","datarequirement"); a.put("DATACENTERCOORDINATE","location"); a.put("COMMANDANDCONTROLREQUEST","requests"); a.put("COMMANDANDCONTROLOPERATION","requests"); a.put("COMMANDANDCONTROLTELEMETRY","receiveData"); a.put("COMMANDANDCONTROLCOORDINATE","location"); a.put("PCDMETMETDATA","measurement"); a.put("PCDMETCOORDINATEPCD","location"); a.put("PCDMETCOORDINATE","location"); a.put("PCDMETPOWERLEVEL","battery"); a.put("PCDMETRECHARGE","battery"); a.put("PCDMETESTABLISHCONNECTION","establish"); a.put("PCDQAGUAQAGUADATA","measurement"); a.put("PCDQAGUACOORDINATEPCD","location"); a.put("PCDQAGUACOORDINATE","location"); a.put("PCDQAGUAPOWERLEVEL","battery"); a.put("PCDQAGUARECHARGE","battery"); a.put("PCDQAGUAESTABLISHCONNECTION","establish"); a.put("PCDHIDROHIDRODATA","measurement"); a.put("PCDHIDROCOORDINATEPCD","location"); a.put("PCDHIDROCOORDINATE","location"); a.put("PCDHIDROPOWERLEVEL","battery"); a.put("PCDHIDRORECHARGE","battery"); a.put("PCDHIDROESTABLISHCONNECTION","establish"); a.put("PCDAGROAGRODATA","measurement"); a.put("PCDAGROCOORDINATEPCD","location"); a.put("PCDAGROCOORDINATE","location"); a.put("PCDAGROPOWERLEVEL","battery"); a.put("PCDAGRORECHARGE","battery"); a.put("PCDAGROESTABLISHCONNECTION","establish"); a.put("MEDIATORPCDTOSATELLITECOORDINATEPCD","location"); a.put("MEDIATORPCDTOSATELLITECOORDINATESATELLITE","location"); a.put("MEDIATORPCDTOSATELLITEESTABLISHCONNECTION","transmit"); a.put("MEDIATORPCDTOSATELLITEMETDATA","transmit"); a.put("MEDIATORPCDTOSATELLITEQAGUADATA","transmit"); a.put("MEDIATORPCDTOSATELLITEHIDRODATA","transmit"); a.put("MEDIATORPCDTOSATELLITEAGRODATA","transmit"); a.put("MEDIATORGROUNDTODATACENTERTELEMETRY","transmit"); a.put("MEDIATORGROUNDTOSATELLITECOORDINATE","transmit"); a.put("MEDIATORGROUNDTOSATELLITETELECOMMAND","transmit"); a.put("MEDIATORGROUNDTOSATELLITETELEMETRY","transmit"); a.put("MEDIATORGROUNDTOSATELLITEESTABLISHCONNECTIONGS","transmit"); a.put("MEDIATORDATACENTERTOC2COORDINATE","transmit"); a.put("MEDIATORDATACENTERTOC2REQUEST","transmit"); a.put("MEDIATORC2TOGROUNDOPERATION","transmit"); return a; } %>! add additional code <% private File getModelsDirectory2() { URI dirUri; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } %>! add additional code //private class Connection <% private class Connection{ public AtomicModelImpl outClass; public Port<?> outPort; public AtomicModelImpl inClass; public Port<?> inPort; public Connection(AtomicModelImpl outClass, Port<?> outPort ,AtomicModelImpl inClass, Port<?> inPort) { this.inPort = inPort; this.inClass = inClass; this.outPort = outPort; this.outClass = outClass; } } %>! external event for w8AddOrRemove with WriteData <% new File("Result").mkdir(); try{ BufferedWriter writer = new BufferedWriter(new FileWriter("Result/Result.csv",true)); writer.write(" SatelliteAmazonia3: "+ Integer.toString(contRecSatelliteAmazonia3-1+1)+";"+" GroundStation: "+ Integer.toString(contRecGroundStation-1+1)+";"+" DataCenter: "+ Integer.toString(contRecDataCenter-1+1)+";"+" CommandAndControl: "+ Integer.toString(contRecCommandAndControl-1+1)+";"+" PCDMet: "+ Integer.toString(contRecPCDMet-1+60)+";"+" PCDQagua: "+ Integer.toString(contRecPCDQagua-1+5)+";"+" PCDHidro: "+ Integer.toString(contRecPCDHidro-1+40)+";"+" PCDAgro: "+ Integer.toString(contRecPCDAgro-1+10) + ";"); simulationTime = System.currentTimeMillis() - simulationTime; writer.write("Simulation time in Millis: = " + Long.toString(simulationTime) + ";"); simulationTime = System.currentTimeMillis(); writer.newLine(); writer.close(); } catch(Exception e) {} for(AtomicModelImpl e : constituents) { if(e instanceof Satellite) { Satellite aux = (Satellite) e; aux.writeCountersData(); } if(e instanceof CommandAndControlSJC) { CommandAndControlSJC aux = (CommandAndControlSJC) e; aux.writeCountersData(); } if(e instanceof GroundStation) { GroundStation aux = (GroundStation) e; aux.writeCountersData(); } if(e instanceof Pcd30885) { Pcd30885 aux = (Pcd30885) e; aux.writeCountersData(); } if(e instanceof Pcd30890) { Pcd30890 aux = (Pcd30890) e; aux.writeCountersData(); } if(e instanceof Pcd30800) { Pcd30800 aux = (Pcd30800) e; aux.writeCountersData(); } if(e instanceof Pcd30888) { Pcd30888 aux = (Pcd30888) e; aux.writeCountersData(); } if(e instanceof Pcd31746) { Pcd31746 aux = (Pcd31746) e; aux.writeCountersData(); } if(e instanceof Pcd31801) { Pcd31801 aux = (Pcd31801) e; aux.writeCountersData(); } if(e instanceof Pcd31744) { Pcd31744 aux = (Pcd31744) e; aux.writeCountersData(); } if(e instanceof Pcd30887) { Pcd30887 aux = (Pcd30887) e; aux.writeCountersData(); } if(e instanceof Pcd30975) { Pcd30975 aux = (Pcd30975) e; aux.writeCountersData(); } if(e instanceof Pcd31745) { Pcd31745 aux = (Pcd31745) e; aux.writeCountersData(); } if(e instanceof DataCenterCP) { DataCenterCP aux = (DataCenterCP) e; aux.writeCountersData(); } if(e instanceof Pcd31819) { Pcd31819 aux = (Pcd31819) e; aux.writeCountersData(); } if(e instanceof Pcd31852) { Pcd31852 aux = (Pcd31852) e; aux.writeCountersData(); } if(e instanceof Pcd31853) { Pcd31853 aux = (Pcd31853) e; aux.writeCountersData(); } if(e instanceof Pcd30882) { Pcd30882 aux = (Pcd30882) e; aux.writeCountersData(); } if(e instanceof Pcd31851) { Pcd31851 aux = (Pcd31851) e; aux.writeCountersData(); } if(e instanceof Pcd30881) { Pcd30881 aux = (Pcd30881) e; aux.writeCountersData(); } if(e instanceof Pcd31132) { Pcd31132 aux = (Pcd31132) e; aux.writeCountersData(); } if(e instanceof Pcd31770) { Pcd31770 aux = (Pcd31770) e; aux.writeCountersData(); } if(e instanceof Pcd31817) { Pcd31817 aux = (Pcd31817) e; aux.writeCountersData(); } if(e instanceof Pcd31814) { Pcd31814 aux = (Pcd31814) e; aux.writeCountersData(); } if(e instanceof Pcd31858) { Pcd31858 aux = (Pcd31858) e; aux.writeCountersData(); } if(e instanceof Pcd31812) { Pcd31812 aux = (Pcd31812) e; aux.writeCountersData(); } if(e instanceof Pcd31856) { Pcd31856 aux = (Pcd31856) e; aux.writeCountersData(); } if(e instanceof Pcd31810) { Pcd31810 aux = (Pcd31810) e; aux.writeCountersData(); } if(e instanceof Pcd31854) { Pcd31854 aux = (Pcd31854) e; aux.writeCountersData(); } if(e instanceof Pcd31811) { Pcd31811 aux = (Pcd31811) e; aux.writeCountersData(); } if(e instanceof Pcd31829) { Pcd31829 aux = (Pcd31829) e; aux.writeCountersData(); } if(e instanceof Pcd31709) { Pcd31709 aux = (Pcd31709) e; aux.writeCountersData(); } if(e instanceof Pcd31820) { Pcd31820 aux = (Pcd31820) e; aux.writeCountersData(); } if(e instanceof Pcd31827) { Pcd31827 aux = (Pcd31827) e; aux.writeCountersData(); } if(e instanceof Pcd31828) { Pcd31828 aux = (Pcd31828) e; aux.writeCountersData(); } if(e instanceof Pcd31826) { Pcd31826 aux = (Pcd31826) e; aux.writeCountersData(); } if(e instanceof Pcd31824) { Pcd31824 aux = (Pcd31824) e; aux.writeCountersData(); } if(e instanceof Pcd31821) { Pcd31821 aux = (Pcd31821) e; aux.writeCountersData(); } if(e instanceof Pcd31822) { Pcd31822 aux = (Pcd31822) e; aux.writeCountersData(); } if(e instanceof Pcd31115) { Pcd31115 aux = (Pcd31115) e; aux.writeCountersData(); } if(e instanceof Pcd31830) { Pcd31830 aux = (Pcd31830) e; aux.writeCountersData(); } if(e instanceof Pcd31116) { Pcd31116 aux = (Pcd31116) e; aux.writeCountersData(); } if(e instanceof Pcd31113) { Pcd31113 aux = (Pcd31113) e; aux.writeCountersData(); } if(e instanceof Pcd31114) { Pcd31114 aux = (Pcd31114) e; aux.writeCountersData(); } if(e instanceof Pcd31111) { Pcd31111 aux = (Pcd31111) e; aux.writeCountersData(); } if(e instanceof Pcd31112) { Pcd31112 aux = (Pcd31112) e; aux.writeCountersData(); } if(e instanceof Pcd30948) { Pcd30948 aux = (Pcd30948) e; aux.writeCountersData(); } if(e instanceof Pcd31839) { Pcd31839 aux = (Pcd31839) e; aux.writeCountersData(); } if(e instanceof Pcd31836) { Pcd31836 aux = (Pcd31836) e; aux.writeCountersData(); } if(e instanceof Pcd30869) { Pcd30869 aux = (Pcd30869) e; aux.writeCountersData(); } if(e instanceof Pcd31837) { Pcd31837 aux = (Pcd31837) e; aux.writeCountersData(); } if(e instanceof Pcd31119) { Pcd31119 aux = (Pcd31119) e; aux.writeCountersData(); } if(e instanceof Pcd31834) { Pcd31834 aux = (Pcd31834) e; aux.writeCountersData(); } if(e instanceof Pcd31835) { Pcd31835 aux = (Pcd31835) e; aux.writeCountersData(); } if(e instanceof Pcd31117) { Pcd31117 aux = (Pcd31117) e; aux.writeCountersData(); } if(e instanceof Pcd31118) { Pcd31118 aux = (Pcd31118) e; aux.writeCountersData(); } if(e instanceof Pcd31809) { Pcd31809 aux = (Pcd31809) e; aux.writeCountersData(); } if(e instanceof Pcd31807) { Pcd31807 aux = (Pcd31807) e; aux.writeCountersData(); } if(e instanceof Pcd31808) { Pcd31808 aux = (Pcd31808) e; aux.writeCountersData(); } if(e instanceof Pcd30873) { Pcd30873 aux = (Pcd30873) e; aux.writeCountersData(); } if(e instanceof Pcd31841) { Pcd31841 aux = (Pcd31841) e; aux.writeCountersData(); } if(e instanceof Pcd31006) { Pcd31006 aux = (Pcd31006) e; aux.writeCountersData(); } if(e instanceof Pcd31842) { Pcd31842 aux = (Pcd31842) e; aux.writeCountersData(); } if(e instanceof Pcd30871) { Pcd30871 aux = (Pcd30871) e; aux.writeCountersData(); } if(e instanceof Pcd30870) { Pcd30870 aux = (Pcd30870) e; aux.writeCountersData(); } if(e instanceof Pcd31000) { Pcd31000 aux = (Pcd31000) e; aux.writeCountersData(); } if(e instanceof Pcd31805) { Pcd31805 aux = (Pcd31805) e; aux.writeCountersData(); } if(e instanceof Pcd31849) { Pcd31849 aux = (Pcd31849) e; aux.writeCountersData(); } if(e instanceof Pcd30879) { Pcd30879 aux = (Pcd30879) e; aux.writeCountersData(); } if(e instanceof Pcd31847) { Pcd31847 aux = (Pcd31847) e; aux.writeCountersData(); } if(e instanceof Pcd31804) { Pcd31804 aux = (Pcd31804) e; aux.writeCountersData(); } if(e instanceof Pcd31848) { Pcd31848 aux = (Pcd31848) e; aux.writeCountersData(); } if(e instanceof Pcd31845) { Pcd31845 aux = (Pcd31845) e; aux.writeCountersData(); } if(e instanceof Pcd31844) { Pcd31844 aux = (Pcd31844) e; aux.writeCountersData(); } if(e instanceof Pcd32534) { Pcd32534 aux = (Pcd32534) e; aux.writeCountersData(); } if(e instanceof Pcd32543) { Pcd32543 aux = (Pcd32543) e; aux.writeCountersData(); } if(e instanceof Pcd32539) { Pcd32539 aux = (Pcd32539) e; aux.writeCountersData(); } if(e instanceof Pcd32537) { Pcd32537 aux = (Pcd32537) e; aux.writeCountersData(); } if(e instanceof Pcd32484) { Pcd32484 aux = (Pcd32484) e; aux.writeCountersData(); } if(e instanceof Pcd31085) { Pcd31085 aux = (Pcd31085) e; aux.writeCountersData(); } if(e instanceof Pcd31020) { Pcd31020 aux = (Pcd31020) e; aux.writeCountersData(); } if(e instanceof Pcd31086) { Pcd31086 aux = (Pcd31086) e; aux.writeCountersData(); } if(e instanceof Pcd31081) { Pcd31081 aux = (Pcd31081) e; aux.writeCountersData(); } if(e instanceof Pcd31082) { Pcd31082 aux = (Pcd31082) e; aux.writeCountersData(); } if(e instanceof Pcd30960) { Pcd30960 aux = (Pcd30960) e; aux.writeCountersData(); } if(e instanceof Pcd31078) { Pcd31078 aux = (Pcd31078) e; aux.writeCountersData(); } if(e instanceof Pcd31079) { Pcd31079 aux = (Pcd31079) e; aux.writeCountersData(); } if(e instanceof Pcd31098) { Pcd31098 aux = (Pcd31098) e; aux.writeCountersData(); } if(e instanceof Pcd31077) { Pcd31077 aux = (Pcd31077) e; aux.writeCountersData(); } if(e instanceof Pcd31099) { Pcd31099 aux = (Pcd31099) e; aux.writeCountersData(); } if(e instanceof Pcd30901) { Pcd30901 aux = (Pcd30901) e; aux.writeCountersData(); } if(e instanceof Pcd30900) { Pcd30900 aux = (Pcd30900) e; aux.writeCountersData(); } if(e instanceof Pcd31074) { Pcd31074 aux = (Pcd31074) e; aux.writeCountersData(); } if(e instanceof Pcd31096) { Pcd31096 aux = (Pcd31096) e; aux.writeCountersData(); } if(e instanceof Pcd31075) { Pcd31075 aux = (Pcd31075) e; aux.writeCountersData(); } if(e instanceof Pcd31097) { Pcd31097 aux = (Pcd31097) e; aux.writeCountersData(); } if(e instanceof Pcd31094) { Pcd31094 aux = (Pcd31094) e; aux.writeCountersData(); } if(e instanceof Pcd31095) { Pcd31095 aux = (Pcd31095) e; aux.writeCountersData(); } if(e instanceof Pcd31092) { Pcd31092 aux = (Pcd31092) e; aux.writeCountersData(); } if(e instanceof Pcd31071) { Pcd31071 aux = (Pcd31071) e; aux.writeCountersData(); } if(e instanceof Pcd31093) { Pcd31093 aux = (Pcd31093) e; aux.writeCountersData(); } if(e instanceof Pcd31090) { Pcd31090 aux = (Pcd31090) e; aux.writeCountersData(); } if(e instanceof Pcd31091) { Pcd31091 aux = (Pcd31091) e; aux.writeCountersData(); } if(e instanceof Pcd31764) { Pcd31764 aux = (Pcd31764) e; aux.writeCountersData(); } if(e instanceof Pcd31786) { Pcd31786 aux = (Pcd31786) e; aux.writeCountersData(); } if(e instanceof Pcd31025) { Pcd31025 aux = (Pcd31025) e; aux.writeCountersData(); } if(e instanceof Pcd31102) { Pcd31102 aux = (Pcd31102) e; aux.writeCountersData(); } if(e instanceof Pcd31784) { Pcd31784 aux = (Pcd31784) e; aux.writeCountersData(); } if(e instanceof Pcd31785) { Pcd31785 aux = (Pcd31785) e; aux.writeCountersData(); } if(e instanceof Pcd31023) { Pcd31023 aux = (Pcd31023) e; aux.writeCountersData(); } if(e instanceof Pcd31089) { Pcd31089 aux = (Pcd31089) e; aux.writeCountersData(); } if(e instanceof Pcd31100) { Pcd31100 aux = (Pcd31100) e; aux.writeCountersData(); } if(e instanceof Pcd31782) { Pcd31782 aux = (Pcd31782) e; aux.writeCountersData(); } if(e instanceof Pcd31101) { Pcd31101 aux = (Pcd31101) e; aux.writeCountersData(); } if(e instanceof Pcd31783) { Pcd31783 aux = (Pcd31783) e; aux.writeCountersData(); } if(e instanceof Pcd31021) { Pcd31021 aux = (Pcd31021) e; aux.writeCountersData(); } if(e instanceof Pcd31780) { Pcd31780 aux = (Pcd31780) e; aux.writeCountersData(); } if(e instanceof Pcd31088) { Pcd31088 aux = (Pcd31088) e; aux.writeCountersData(); } if(e instanceof Pcd31029) { Pcd31029 aux = (Pcd31029) e; aux.writeCountersData(); } } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
GroundStation.dnl use countOperationReceived with type int! use countEstablishConnectionGSReceived with type int! use countTelemetryReceived with type int! use operation1 with type Operation! use telecommand1 with type Telecommand! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A Operation has id, date, orbitId, name, instruction, and coordinateToBeMonitored! the range of Operation's id is Integer! the range of Operation's date is java.util.Calendar! the range of Operation's orbitId is Integer! the range of Operation's name is String! the range of Operation's instruction is Integer! the range of Operation's coordinateToBeMonitored is Coordinate! use operation with type Operation! A Image has name, extension, and content! the range of Image's name is String! the range of Image's extension is String! the range of Image's content is Binary! use image with type Image! A Telecommand has id, date, orbitId, name, instruction, and coordinateToBeMonitored! the range of Telecommand's id is Integer! the range of Telecommand's date is java.util.Calendar! the range of Telecommand's orbitId is Integer! the range of Telecommand's name is String! the range of Telecommand's instruction is Integer! the range of Telecommand's coordinateToBeMonitored is Coordinate! use telecommand with type Telecommand! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A Coordinate has x and y! the range of Coordinate's x is Latitude! the range of Coordinate's y is Longitude! use coordinate with type Coordinate! A Binary has a value! the range of Binary's value is Integer! use binary with type Binary! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); operation = new Operation(new Integer(0), Calendar.getInstance(),new Integer(0),new String(),new Integer(0),new Coordinate(new Latitude(),new Longitude())); image = new Image(new String(),new String(),new Binary(new Integer(0))); telecommand = new Telecommand(new Integer(0), Calendar.getInstance(),new Integer(0),new String(),new Integer(0),new Coordinate(new Latitude(),new Longitude())); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); coordinate = new Coordinate(new Latitude(),new Longitude()); binary = new Binary(new Integer(0)); establish = new Establish(new Integer(0)); %>! accepts input on Operation with type Operation! generates output on Telecommand with type Telecommand! accepts input on Telemetry with type Image! generates output on Telemetry with type Image! generates output on Coordinate with type Coordinate! accepts input on EstablishConnectionGS with type Establish! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive Operation go to s3! hold in s3 for time 1! from s3 go to s4! //UNOBSERVABLE : Valuing when in s2 and receive EstablishConnectionGS go to s5! hold in s5 for time 1! after s5 output Telecommand! from s5 go to s6! when in s2 and receive Telemetry go to s7! hold in s7 for time 1! after s7 output Telemetry! from s7 go to s8! hold in s4 for time 1! from s4 go to s1! //UNOBSERVABLE : Repeat loop hold in s6 for time 1! from s6 go to s1! //UNOBSERVABLE : Repeat loop hold in s8 for time 1! from s8 go to s1! //UNOBSERVABLE : Repeat loop external event for s2 with Operation <% countOperationReceived++; operation1 = messageList.get(0).getData(); %>! external event for s2 with EstablishConnectionGS <% countEstablishConnectionGSReceived++; establish = messageList.get(0).getData(); %>! output event for s5 <% output.add(outTelecommand, telecommand); %>! external event for s2 with Telemetry <% countTelemetryReceived++; image = messageList.get(0).getData(); %>! output event for s7 <% output.add(outTelemetry, image); %>! internal event for s1 <% operation1 = null; %>! internal event for s3 <% telecommand1 = new Telecommand(operation1.id,operation1.date,operation1.orbitId,operation.name,operation1.instruction,operation1.coordinateToBeMonitored); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = false; public final String typeCons = "GroundStation"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countOperationReceived = " + Integer.toString(countOperationReceived) + ";"); countOperationReceived = 0; writer.write("countEstablishConnectionGSReceived = " + Integer.toString(countEstablishConnectionGSReceived) + ";"); countEstablishConnectionGSReceived = 0; writer.write("countTelemetryReceived = " + Integer.toString(countTelemetryReceived) + ";"); countTelemetryReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
Mediator1.dnl use countRequestReceived with type int! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! use collectedImages with type java.util.ArrayList<Image>! A Image has name, extension, and content! the range of Image's name is String! the range of Image's extension is String! the range of Image's content is Binary! use image with type Image! A Request has coordinateToBeMonitored, date, and request! the range of Request's coordinateToBeMonitored is Coordinate! the range of Request's date is java.util.Calendar! the range of Request's request is String! use request with type Request! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A Coordinate has x and y! the range of Coordinate's x is Latitude! the range of Coordinate's y is Longitude! use coordinate with type Coordinate! A Binary has a value! the range of Binary's value is Integer! use binary with type Binary! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); collectedImages = new java.util.ArrayList<Image>(); image = new Image(new String(),new String(),new Binary(new Integer(0))); request = new Request(new Coordinate(new Latitude(),new Longitude()), Calendar.getInstance(),new String()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); coordinate = new Coordinate(new Latitude(),new Longitude()); binary = new Binary(new Integer(0)); %>! accepts input on Coordinate with type Coordinate! accepts input on Request with type Request! generates output on Request with type Request! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! passivate in s1! when in s1 and receive Request go to s2! hold in s2 for time 1! after s2 output Request! from s2 go to s3! hold in s3 for time 1! from s3 go to s1! //UNOBSERVABLE : Repeat loop external event for s1 with Request <% countRequestReceived++; request = messageList.get(0).getData(); %>! output event for s2 <% output.add(outRequest, request); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorDataCenterToC2"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countRequestReceived = " + Integer.toString(countRequestReceived) + ";"); countRequestReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
Mediator2.dnl use countOperationReceived with type int! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A Image has name, extension, and content! the range of Image's name is String! the range of Image's extension is String! the range of Image's content is Binary! use image with type Image! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A Coordinate has x and y! the range of Coordinate's x is Latitude! the range of Coordinate's y is Longitude! use coordinate with type Coordinate! A Binary has a value! the range of Binary's value is Integer! use binary with type Binary! A Operation has id, date, orbitId, name, instruction, and coordinateToBeMonitored! the range of Operation's id is Integer! the range of Operation's date is java.util.Calendar! the range of Operation's orbitId is Integer! the range of Operation's name is String! the range of Operation's instruction is Integer! the range of Operation's coordinateToBeMonitored is Coordinate! use operation with type Operation! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); image = new Image(new String(),new String(),new Binary(new Integer(0))); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); coordinate = new Coordinate(new Latitude(),new Longitude()); binary = new Binary(new Integer(0)); operation = new Operation(new Integer(0), Calendar.getInstance(),new Integer(0),new String(),new Integer(0),new Coordinate(new Latitude(),new Longitude())); %>! accepts input on Operation with type Operation! generates output on Operation with type Operation! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! passivate in s1! when in s1 and receive Operation go to s2! hold in s2 for time 1! after s2 output Operation! from s2 go to s3! hold in s3 for time 1! from s3 go to s1! //UNOBSERVABLE : Repeat loop external event for s1 with Operation <% countOperationReceived++; operation = messageList.get(0).getData(); %>! output event for s2 <% output.add(outOperation, operation); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorC2ToGround"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countOperationReceived = " + Integer.toString(countOperationReceived) + ";"); countOperationReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
Mediator3.dnl use countCoordinateReceived with type int! use countTelecommandReceived with type int! use countTelemetryReceived with type int! use distanceMax with type Distance! use coordinate1 with type Coordinate! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A Operation has id, date, orbitId, name, instruction, and coordinateToBeMonitored! the range of Operation's id is Integer! the range of Operation's date is java.util.Calendar! the range of Operation's orbitId is Integer! the range of Operation's name is String! the range of Operation's instruction is Integer! the range of Operation's coordinateToBeMonitored is Coordinate! use operation with type Operation! A Image has name, extension, and content! the range of Image's name is String! the range of Image's extension is String! the range of Image's content is Binary! use image with type Image! A Telecommand has id, date, orbitId, name, instruction, and coordinateToBeMonitored! the range of Telecommand's id is Integer! the range of Telecommand's date is java.util.Calendar! the range of Telecommand's orbitId is Integer! the range of Telecommand's name is String! the range of Telecommand's instruction is Integer! the range of Telecommand's coordinateToBeMonitored is Coordinate! use telecommand with type Telecommand! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A Coordinate has x and y! the range of Coordinate's x is Latitude! the range of Coordinate's y is Longitude! use coordinate with type Coordinate! A Binary has a value! the range of Binary's value is Integer! use binary with type Binary! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); operation = new Operation(new Integer(0), Calendar.getInstance(),new Integer(0),new String(),new Integer(0),new Coordinate(new Latitude(),new Longitude())); image = new Image(new String(),new String(),new Binary(new Integer(0))); telecommand = new Telecommand(new Integer(0), Calendar.getInstance(),new Integer(0),new String(),new Integer(0),new Coordinate(new Latitude(),new Longitude())); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); coordinate = new Coordinate(new Latitude(),new Longitude()); binary = new Binary(new Integer(0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on Coordinate with type SatellitePosition! accepts input on Telecommand with type Telecommand! generates output on Telecommand with type Telecommand! accepts input on Telemetry with type Image! generates output on Telemetry with type Image! generates output on EstablishConnectionGS with type Establish! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive Coordinate go to s3! hold in s3 for time 1! from s3 go to s4! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : Valuing hold in s5 for time 1! after s5 output EstablishConnectionGS! from s5 go to s6! passivate in s6! when in s6 and receive Telecommand go to s7! hold in s7 for time 1! after s7 output Telecommand! from s7 go to s8! when in s2 and receive Telemetry go to s9! hold in s9 for time 1! after s9 output Telemetry! from s9 go to s10! hold in s8 for time 1! from s8 go to s2! //UNOBSERVABLE : Repeat loop hold in s10 for time 1! from s10 go to s2! //UNOBSERVABLE : Repeat loop external event for s2 with Coordinate <% countCoordinateReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s5 <% output.add(outEstablishConnectionGS, establish); %>! external event for s6 with Telecommand <% countTelecommandReceived++; telecommand = messageList.get(0).getData(); %>! output event for s7 <% output.add(outTelecommand, telecommand); %>! external event for s2 with Telemetry <% countTelemetryReceived++; image = messageList.get(0).getData(); %>! output event for s9 <% output.add(outTelemetry, image); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, Coordinate othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); coordinate1 = new Coordinate( new Latitude(new Double(10)), new Longitude(new Double(0))); %>! internal event for s3 <% if(distance(satellitePosition, coordinate1) <= distanceMax.getValue()) { holdIn("s4",1.0); } else { holdIn("s8",1.0); } %>! internal event for s4 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! when in s9 and receive Remove go to RemoveC! when in s10 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorGroundToSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinateReceived = " + Integer.toString(countCoordinateReceived) + ";"); countCoordinateReceived = 0; writer.write("countTelecommandReceived = " + Integer.toString(countTelecommandReceived) + ";"); countTelecommandReceived = 0; writer.write("countTelemetryReceived = " + Integer.toString(countTelemetryReceived) + ";"); countTelemetryReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
Mediator4.dnl use countTelemetryReceived with type int! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A Image has name, extension, and content! the range of Image's name is String! the range of Image's extension is String! the range of Image's content is Binary! use image with type Image! A Binary has a value! the range of Binary's value is Integer! use binary with type Binary! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); image = new Image(new String(),new String(),new Binary(new Integer(0))); binary = new Binary(new Integer(0)); %>! accepts input on Telemetry with type Image! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! passivate in s1! when in s1 and receive Telemetry go to s2! hold in s2 for time 1! after s2 output Telemetry! from s2 go to s3! hold in s3 for time 1! from s3 go to s1! //UNOBSERVABLE : Repeat loop external event for s1 with Telemetry <% countTelemetryReceived++; image = messageList.get(0).getData(); %>! output event for s2 <% output.add(outTelemetry, image); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorGroundToDataCenter"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countTelemetryReceived = " + Integer.toString(countTelemetryReceived) + ";"); countTelemetryReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd1.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd10.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd100.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd101.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd103.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd104.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd105.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd107.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd108.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd109.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd11.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd111.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd112.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd113.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd116.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd117.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd118.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd12.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd120.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd121.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd125.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd126.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd129.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd13.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd130.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd133.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd134.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd135.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd136.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd137.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd138.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd139.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd14.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd140.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd141.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd142.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd143.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd144.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd145.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd146.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd147.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd148.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd149.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd15.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd150.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd151.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd152.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd153.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd154.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd155.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd156.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd157.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd158.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd159.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd16.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd160.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd161.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd162.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd163.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd164.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd165.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd166.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd167.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd168.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd169.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd17.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd170.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd171.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd172.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd173.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd174.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd175.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd176.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd177.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd18.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd180.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd181.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd183.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd185.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd186.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd189.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd19.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd190.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd192.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd193.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd194.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd195.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd196.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd198.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd199.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd2.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!
Systems-of-Systems (SoS) combine heterogeneous, independent systems to offer complex functionalities for highly dynamic smart applications. Besides their dynamic architecture with continuous changes at runtime, SoS should be reliable and work without interrupting their operation and with no failures that could cause accidents or losses. SoS architectural design should facilitate the prediction of the impact of architectural changes and potential failures due to SoS behavior. However, existing approaches do not support such evaluation. Hence, these systems have been usually built without a proper evaluation of their architecture. Space SoS: a real system called Environmental Data Collection System (SBCDA, in Portuguese). Space SoS is operated and managed by the Brazilian National Institute for Space Research (INPE, in Portuguese), which provided us real data and know-how to precisely model the entire system. Space SoS is responsible to perform two concurrent missions (environmental data collection and image cap ture), and is composed of satellites, ground station, command and control center, and data collection platforms, which each of then can be managed by different institutions.
MediatorPcd20.dnl use countCoordinatePCDReceived with type int! use countCoordinateSatelliteReceived with type int! use countMetDataReceived with type int! use countQaguaDataReceived with type int! use countHidroDataReceived with type int! use countAgroDataReceived with type int! use distanceMax with type Distance! use establish1 with type Establish! add library <% import java.util.Date; import java.util.Calendar; import java.util.Random; import java.util.ArrayList; import static java.lang.Math.*; import com.ms4systems.devs.core.model.AtomicModel; %>! A MetData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolref, radsolinc, radsolpar, radsolglob, radsolliq, tempar, tempmax, tempmin, tempint, umidint, umidrel, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, velvento, precipitacao, dia, hora, tempcomb, umidcomb, datainc, umidcmb, tempcmb, nivelrio, nivregua, temparmax, temparmin, tsm, nivmare, tempsolo, nivelregua, precipitacao3hrs, pressaoqnh, bateria24, pluvioacum24, tempmax24, tempmin24, umidrelmax24, umidrelmin24, pressaoatm24, velvento24, dirvento24, velventomax24, radsolacum24, bateriamin24, pluvio24, cont1, cont2, cont3, contador, contreal, luminosidade, qar, uv, qalcoolar, sentvento, etz, molhfoliar, latg, latm, lats, latp, latitude, longi, lonm, lons, lonp, longitude, chksum, messageMet, year, month, day, hour, minute, latsign, longsign, posstatus, battery, solarcurrent, boottimes, floodlevel, avgwindspeed1, windgust1, winddirection1, avgwindspeed2, windgust2, winddirection2, spare1, spare2, spare3, spare4, spare5, spare6, spare7, windspeed1, windgust3, winddirection3, airtemperature, relhumidity, dewpoint, pressure, sst, buoyheading, clorofila, turbidez, avgradiation, cmvelocity1, cmdirection1, cmvelocity2, cmdirection2, cmvelocity3, cmdirection3, hs, hmax, tp, mndir, mnspread, spare8, temparmax24, and temparmin24! the range of MetData's corrpsol is Corrpsol! the range of MetData's dirvelventomax is Dirvelventomax! the range of MetData's dirvento is Dirvento! the range of MetData's pluvio is Pluvio! the range of MetData's pluvio24h12gmt is Pluvio24h12gmt! the range of MetData's pressaoatm is Pressaoatm! the range of MetData's radsolacum is Radsolacum! the range of MetData's radsolref is Radsolref! the range of MetData's radsolinc is Radsolinc! the range of MetData's radsolpar is Radsolpar! the range of MetData's radsolglob is Radsolglob! the range of MetData's radsolliq is Radsolliq! the range of MetData's tempar is Tempar! the range of MetData's tempmax is Tempmax! the range of MetData's tempmin is Tempmin! the range of MetData's tempint is Tempint! the range of MetData's umidint is Umidint! the range of MetData's umidrel is Umidrel! the range of MetData's velvento2m is Velvento2m! the range of MetData's velvento3m is Velvento3m! the range of MetData's velvento5m is Velvento5m! the range of MetData's velvento10m is Velvento10m! the range of MetData's velventomax is Velventomax! the range of MetData's velvento is Velvento! the range of MetData's precipitacao is Precipitacao! the range of MetData's dia is Dia! the range of MetData's hora is Hora! the range of MetData's tempcomb is Tempcomb! the range of MetData's umidcomb is Umidcomb! the range of MetData's datainc is Datainc! the range of MetData's umidcmb is Umidcmb! the range of MetData's tempcmb is Tempcmb! the range of MetData's nivelrio is Nivelrio! the range of MetData's nivregua is Nivregua! the range of MetData's temparmax is Temparmax! the range of MetData's temparmin is Temparmin! the range of MetData's tsm is Tsm! the range of MetData's nivmare is Nivmare! the range of MetData's tempsolo is Tempsolo! the range of MetData's nivelregua is Nivelregua! the range of MetData's precipitacao3hrs is Precipitacao3hrs! the range of MetData's pressaoqnh is Pressaoqnh! the range of MetData's bateria24 is Bateria24! the range of MetData's pluvioacum24 is Pluvioacum24! the range of MetData's tempmax24 is Tempmax24! the range of MetData's tempmin24 is Tempmin24! the range of MetData's umidrelmax24 is Umidrelmax24! the range of MetData's umidrelmin24 is Umidrelmin24! the range of MetData's pressaoatm24 is Pressaoatm24! the range of MetData's velvento24 is Velvento24! the range of MetData's dirvento24 is Dirvento24! the range of MetData's velventomax24 is Velventomax24! the range of MetData's radsolacum24 is Radsolacum24! the range of MetData's bateriamin24 is Bateriamin24! the range of MetData's pluvio24 is Pluvio24! the range of MetData's cont1 is Cont1! the range of MetData's cont2 is Cont2! the range of MetData's cont3 is Cont3! the range of MetData's contador is Contador! the range of MetData's contreal is Contreal! the range of MetData's luminosidade is Luminosidade! the range of MetData's qar is Qar! the range of MetData's uv is Uv! the range of MetData's qalcoolar is Qalcoolar! the range of MetData's sentvento is Sentvento! the range of MetData's etz is Etz! the range of MetData's molhfoliar is Molhfoliar! the range of MetData's latg is Latg! the range of MetData's latm is Latm! the range of MetData's lats is Lats! the range of MetData's latp is Latp! the range of MetData's latitude is Latitude! the range of MetData's longi is Longi! the range of MetData's lonm is Lonm! the range of MetData's lons is Lons! the range of MetData's lonp is Lonp! the range of MetData's longitude is Longitude! the range of MetData's chksum is Chksum! the range of MetData's messageMet is MessageMet! the range of MetData's year is Year! the range of MetData's month is Month! the range of MetData's day is Day! the range of MetData's hour is Hour! the range of MetData's minute is Minute! the range of MetData's latsign is Latsign! the range of MetData's longsign is Longsign! the range of MetData's posstatus is Posstatus! the range of MetData's battery is Battery! the range of MetData's solarcurrent is Solarcurrent! the range of MetData's boottimes is Boottimes! the range of MetData's floodlevel is Floodlevel! the range of MetData's avgwindspeed1 is Avgwindspeed1! the range of MetData's windgust1 is Windgust1! the range of MetData's winddirection1 is Winddirection1! the range of MetData's avgwindspeed2 is Avgwindspeed2! the range of MetData's windgust2 is Windgust2! the range of MetData's winddirection2 is Winddirection2! the range of MetData's spare1 is Spare1! the range of MetData's spare2 is Spare2! the range of MetData's spare3 is Spare3! the range of MetData's spare4 is Spare4! the range of MetData's spare5 is Spare5! the range of MetData's spare6 is Spare6! the range of MetData's spare7 is Spare7! the range of MetData's windspeed1 is Windspeed1! the range of MetData's windgust3 is Windgust3! the range of MetData's winddirection3 is Winddirection3! the range of MetData's airtemperature is Airtemperature! the range of MetData's relhumidity is Relhumidity! the range of MetData's dewpoint is Dewpoint! the range of MetData's pressure is Pressure! the range of MetData's sst is Sst! the range of MetData's buoyheading is Buoyheading! the range of MetData's clorofila is Clorofila! the range of MetData's turbidez is Turbidez! the range of MetData's avgradiation is Avgradiation! the range of MetData's cmvelocity1 is Cmvelocity1! the range of MetData's cmdirection1 is Cmdirection1! the range of MetData's cmvelocity2 is Cmvelocity2! the range of MetData's cmdirection2 is Cmdirection2! the range of MetData's cmvelocity3 is Cmvelocity3! the range of MetData's cmdirection3 is Cmdirection3! the range of MetData's hs is Hs! the range of MetData's hmax is Hmax! the range of MetData's tp is Tp! the range of MetData's mndir is Mndir! the range of MetData's mnspread is Mnspread! the range of MetData's spare8 is Spare8! the range of MetData's temparmax24 is Temparmax24! the range of MetData's temparmin24 is Temparmin24! use metData with type MetData! A QaguaData has corrpsol, cota, pluvio, pluvio24h12gmt, prof, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, turbidez, profsonda, odsat, solidostot, ano, nivsond, redox, and tempqa! the range of QaguaData's corrpsol is Corrpsol! the range of QaguaData's cota is Cota! the range of QaguaData's pluvio is Pluvio! the range of QaguaData's pluvio24h12gmt is Pluvio24h12gmt! the range of QaguaData's prof is Prof! the range of QaguaData's spressao is Spressao! the range of QaguaData's tempint is Tempint! the range of QaguaData's umidint is Umidint! the range of QaguaData's umidrel is Umidrel! the range of QaguaData's lgctsol is Lgctsol! the range of QaguaData's lgccsol is Lgccsol! the range of QaguaData's nivregua is Nivregua! the range of QaguaData's tempagua is Tempagua! the range of QaguaData's codifeixo is Codifeixo! the range of QaguaData's condut is Condut! the range of QaguaData's od is Od! the range of QaguaData's ph is Ph! the range of QaguaData's salinidade is Salinidade! the range of QaguaData's precipitacao is Precipitacao! the range of QaguaData's turbidez is Turbidez! the range of QaguaData's profsonda is Profsonda! the range of QaguaData's odsat is Odsat! the range of QaguaData's solidostot is Solidostot! the range of QaguaData's ano is Ano! the range of QaguaData's nivsond is Nivsond! the range of QaguaData's redox is Redox! the range of QaguaData's tempqa is Tempqa! use qaguaData with type QaguaData! A HidroData has pluvio, pluvio24h12gmt, spressao, tempint, umidint, umidrel, lgctsol, lgccsol, nivregua, tempagua, codifeixo, condut, od, ph, salinidade, precipitacao, dataInc, nivelregua, precipitacao3hrs, turbidez, chk, pressaoatm, and nivmare! the range of HidroData's pluvio is Pluvio! the range of HidroData's pluvio24h12gmt is Pluvio24h12gmt! the range of HidroData's spressao is Spressao! the range of HidroData's tempint is Tempint! the range of HidroData's umidint is Umidint! the range of HidroData's umidrel is Umidrel! the range of HidroData's lgctsol is Lgctsol! the range of HidroData's lgccsol is Lgccsol! the range of HidroData's nivregua is Nivregua! the range of HidroData's tempagua is Tempagua! the range of HidroData's codifeixo is Codifeixo! the range of HidroData's condut is Condut! the range of HidroData's od is Od! the range of HidroData's ph is Ph! the range of HidroData's salinidade is Salinidade! the range of HidroData's precipitacao is Precipitacao! the range of HidroData's dataInc is DataInc! the range of HidroData's nivelregua is Nivelregua! the range of HidroData's precipitacao3hrs is Precipitacao3hrs! the range of HidroData's turbidez is Turbidez! the range of HidroData's chk is Chk! the range of HidroData's pressaoatm is Pressaoatm! the range of HidroData's nivmare is Nivmare! use hidroData with type HidroData! A AgroData has corrpsol, dirvelventomax, dirvento, pluvio, pluvio24h12gmt, pressaoatm, radsolacum, radsolglob, radsolliq, radsolinc, radsolpar, radsolref, tempar, tempmax, tempmin, umidint, umidsolo, umidrel, fluxcalsolo, tempsolo, tempsolo60, tempsolo100, tempsolo120, tempsolo180, tempsolo200, tempsolo300, tempsolo400, tempsolo500, contaguasolo100, contaguasolo200, contaguasolo400, velvento2m, velvento3m, velvento5m, velvento10m, velventomax, datainc, precipitacao, tempint, velvento, tempsolo10, tempsolo20, tempsolo50, umidsolo10, umidsolo20, umidsolo50, temparmax, temparmin, precipitacao3hrs, pressaored, pressaoqnh, umidsolo100, umidsolo200, umidsolo400, batmin, desvdirvento, radsolmedia, fluxcalorsolo, tempsolo2, and cva! the range of AgroData's corrpsol is Corrpsol! the range of AgroData's dirvelventomax is Dirvelventomax! the range of AgroData's dirvento is Dirvento! the range of AgroData's pluvio is Pluvio! the range of AgroData's pluvio24h12gmt is Pluvio24h12gmt! the range of AgroData's pressaoatm is Pressaoatm! the range of AgroData's radsolacum is Radsolacum! the range of AgroData's radsolglob is Radsolglob! the range of AgroData's radsolliq is Radsolliq! the range of AgroData's radsolinc is Radsolinc! the range of AgroData's radsolpar is Radsolpar! the range of AgroData's radsolref is Radsolref! the range of AgroData's tempar is Tempar! the range of AgroData's tempmax is Tempmax! the range of AgroData's tempmin is Tempmin! the range of AgroData's umidint is Umidint! the range of AgroData's umidsolo is Umidsolo! the range of AgroData's umidrel is Umidrel! the range of AgroData's fluxcalsolo is Fluxcalsolo! the range of AgroData's tempsolo is Tempsolo! the range of AgroData's tempsolo60 is Tempsolo60! the range of AgroData's tempsolo100 is Tempsolo100! the range of AgroData's tempsolo120 is Tempsolo120! the range of AgroData's tempsolo180 is Tempsolo180! the range of AgroData's tempsolo200 is Tempsolo200! the range of AgroData's tempsolo300 is Tempsolo300! the range of AgroData's tempsolo400 is Tempsolo400! the range of AgroData's tempsolo500 is Tempsolo500! the range of AgroData's contaguasolo100 is Contaguasolo100! the range of AgroData's contaguasolo200 is Contaguasolo200! the range of AgroData's contaguasolo400 is Contaguasolo400! the range of AgroData's velvento2m is Velvento2m! the range of AgroData's velvento3m is Velvento3m! the range of AgroData's velvento5m is Velvento5m! the range of AgroData's velvento10m is Velvento10m! the range of AgroData's velventomax is Velventomax! the range of AgroData's datainc is Datainc! the range of AgroData's precipitacao is Precipitacao! the range of AgroData's tempint is Tempint! the range of AgroData's velvento is Velvento! the range of AgroData's tempsolo10 is Tempsolo10! the range of AgroData's tempsolo20 is Tempsolo20! the range of AgroData's tempsolo50 is Tempsolo50! the range of AgroData's umidsolo10 is Umidsolo10! the range of AgroData's umidsolo20 is Umidsolo20! the range of AgroData's umidsolo50 is Umidsolo50! the range of AgroData's temparmax is Temparmax! the range of AgroData's temparmin is Temparmin! the range of AgroData's precipitacao3hrs is Precipitacao3hrs! the range of AgroData's pressaored is Pressaored! the range of AgroData's pressaoqnh is Pressaoqnh! the range of AgroData's umidsolo100 is Umidsolo100! the range of AgroData's umidsolo200 is Umidsolo200! the range of AgroData's umidsolo400 is Umidsolo400! the range of AgroData's batmin is Batmin! the range of AgroData's desvdirvento is Desvdirvento! the range of AgroData's radsolmedia is Radsolmedia! the range of AgroData's fluxcalorsolo is Fluxcalorsolo! the range of AgroData's tempsolo2 is Tempsolo2! the range of AgroData's cva is Cva! use agroData with type AgroData! A Latitude has a doubleValue! the range of Latitude's doubleValue is Double! use latitude with type Latitude! A Longitude has a doubleValue! the range of Longitude's doubleValue is Double! use longitude with type Longitude! A SatellitePosition has x and y! the range of SatellitePosition's x is Latitude! the range of SatellitePosition's y is Longitude! use satellitePosition with type SatellitePosition! A PCDPosition has x and y! the range of PCDPosition's x is Latitude! the range of PCDPosition's y is Longitude! use pCDPosition with type PCDPosition! A Establish has a value! the range of Establish's value is Integer! use establish with type Establish! A Distance has a value! the range of Distance's value is Integer! use distance with type Distance! Initialize variables <% java.util.Random generator = new java.util.Random(); //in case of necessity to coordinate generation int number1 = generator.nextInt(10); int number2 = generator.nextInt(10); metData = new MetData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolref(),new Radsolinc(),new Radsolpar(),new Radsolglob(),new Radsolliq(),new Tempar(),new Tempmax(),new Tempmin(),new Tempint(),new Umidint(),new Umidrel(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Velvento(),new Precipitacao(),new Dia(),new Hora(),new Tempcomb(),new Umidcomb(),new Datainc(),new Umidcmb(),new Tempcmb(),new Nivelrio(),new Nivregua(),new Temparmax(),new Temparmin(),new Tsm(),new Nivmare(),new Tempsolo(),new Nivelregua(),new Precipitacao3hrs(),new Pressaoqnh(),new Bateria24(),new Pluvioacum24(),new Tempmax24(),new Tempmin24(),new Umidrelmax24(),new Umidrelmin24(),new Pressaoatm24(),new Velvento24(),new Dirvento24(),new Velventomax24(),new Radsolacum24(),new Bateriamin24(),new Pluvio24(),new Cont1(),new Cont2(),new Cont3(),new Contador(),new Contreal(),new Luminosidade(),new Qar(),new Uv(),new Qalcoolar(),new Sentvento(),new Etz(),new Molhfoliar(),new Latg(),new Latm(),new Lats(),new Latp(),new Latitude(),new Longi(),new Lonm(),new Lons(),new Lonp(),new Longitude(),new Chksum(),new MessageMet(),new Year(),new Month(),new Day(),new Hour(),new Minute(),new Latsign(),new Longsign(),new Posstatus(),new Battery(),new Solarcurrent(),new Boottimes(),new Floodlevel(),new Avgwindspeed1(),new Windgust1(),new Winddirection1(),new Avgwindspeed2(),new Windgust2(),new Winddirection2(),new Spare1(),new Spare2(),new Spare3(),new Spare4(),new Spare5(),new Spare6(),new Spare7(),new Windspeed1(),new Windgust3(),new Winddirection3(),new Airtemperature(),new Relhumidity(),new Dewpoint(),new Pressure(),new Sst(),new Buoyheading(),new Clorofila(),new Turbidez(),new Avgradiation(),new Cmvelocity1(),new Cmdirection1(),new Cmvelocity2(),new Cmdirection2(),new Cmvelocity3(),new Cmdirection3(),new Hs(),new Hmax(),new Tp(),new Mndir(),new Mnspread(),new Spare8(),new Temparmax24(),new Temparmin24()); qaguaData = new QaguaData(new Corrpsol(),new Cota(),new Pluvio(),new Pluvio24h12gmt(),new Prof(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new Turbidez(),new Profsonda(),new Odsat(),new Solidostot(),new Ano(),new Nivsond(),new Redox(),new Tempqa()); hidroData = new HidroData(new Pluvio(),new Pluvio24h12gmt(),new Spressao(),new Tempint(),new Umidint(),new Umidrel(),new Lgctsol(),new Lgccsol(),new Nivregua(),new Tempagua(),new Codifeixo(),new Condut(),new Od(),new Ph(),new Salinidade(),new Precipitacao(),new DataInc(),new Nivelregua(),new Precipitacao3hrs(),new Turbidez(),new Chk(),new Pressaoatm(),new Nivmare()); agroData = new AgroData(new Corrpsol(),new Dirvelventomax(),new Dirvento(),new Pluvio(),new Pluvio24h12gmt(),new Pressaoatm(),new Radsolacum(),new Radsolglob(),new Radsolliq(),new Radsolinc(),new Radsolpar(),new Radsolref(),new Tempar(),new Tempmax(),new Tempmin(),new Umidint(),new Umidsolo(),new Umidrel(),new Fluxcalsolo(),new Tempsolo(),new Tempsolo60(),new Tempsolo100(),new Tempsolo120(),new Tempsolo180(),new Tempsolo200(),new Tempsolo300(),new Tempsolo400(),new Tempsolo500(),new Contaguasolo100(),new Contaguasolo200(),new Contaguasolo400(),new Velvento2m(),new Velvento3m(),new Velvento5m(),new Velvento10m(),new Velventomax(),new Datainc(),new Precipitacao(),new Tempint(),new Velvento(),new Tempsolo10(),new Tempsolo20(),new Tempsolo50(),new Umidsolo10(),new Umidsolo20(),new Umidsolo50(),new Temparmax(),new Temparmin(),new Precipitacao3hrs(),new Pressaored(),new Pressaoqnh(),new Umidsolo100(),new Umidsolo200(),new Umidsolo400(),new Batmin(),new Desvdirvento(),new Radsolmedia(),new Fluxcalorsolo(),new Tempsolo2(),new Cva()); latitude = new Latitude(new Double(0.0)); longitude = new Longitude(new Double(0.0)); satellitePosition = new SatellitePosition(new Latitude(),new Longitude()); pCDPosition = new PCDPosition(new Latitude(),new Longitude()); establish = new Establish(new Integer(0)); distance = new Distance(new Integer(0)); %>! accepts input on CoordinatePCD with type PCDPosition! accepts input on CoordinateSatellite with type SatellitePosition! generates output on EstablishConnection with type Establish! accepts input on MetData with type MetData! generates output on MetData with type MetData! accepts input on QaguaData with type QaguaData! generates output on QaguaData with type QaguaData! accepts input on HidroData with type HidroData! generates output on HidroData with type HidroData! accepts input on AgroData with type AgroData! generates output on AgroData with type AgroData! to start hold in s0 for time 1! from s0 go to s1! //UNOBSERVABLE : FIXME: system/mediator/architecture parameters may change this guard! hold in s1 for time 1! from s1 go to s2! //UNOBSERVABLE : Valuing passivate in s2! when in s2 and receive CoordinatePCD go to s3! passivate in s3! when in s3 and receive CoordinateSatellite go to s4! hold in s4 for time 1! from s4 go to s5! //UNOBSERVABLE : IfThenElseBehavior (true case) hold in s5 for time 1! from s5 go to s6! //UNOBSERVABLE : Valuing hold in s6 for time 1! after s6 output EstablishConnection! from s6 go to s7! passivate in s7! when in s7 and receive MetData go to s8! hold in s8 for time 1! after s8 output MetData! from s8 go to s9! when in s7 and receive QaguaData go to s10! hold in s10 for time 1! after s10 output QaguaData! from s10 go to s11! when in s7 and receive HidroData go to s12! hold in s12 for time 1! after s12 output HidroData! from s12 go to s13! when in s7 and receive AgroData go to s14! hold in s14 for time 1! after s14 output AgroData! from s14 go to s15! passivate in s9! passivate in s11! passivate in s13! passivate in s15! external event for s2 with CoordinatePCD <% countCoordinatePCDReceived++; pCDPosition = messageList.get(0).getData(); %>! external event for s3 with CoordinateSatellite <% countCoordinateSatelliteReceived++; satellitePosition = messageList.get(0).getData(); %>! output event for s6 <% output.add(outEstablishConnection, establish); %>! external event for s7 with MetData <% countMetDataReceived++; metData = messageList.get(0).getData(); %>! output event for s8 <% output.add(outMetData, metData); %>! external event for s7 with QaguaData <% countQaguaDataReceived++; qaguaData = messageList.get(0).getData(); %>! output event for s10 <% output.add(outQaguaData, qaguaData); %>! external event for s7 with HidroData <% countHidroDataReceived++; hidroData = messageList.get(0).getData(); %>! output event for s12 <% output.add(outHidroData, hidroData); %>! external event for s7 with AgroData <% countAgroDataReceived++; agroData = messageList.get(0).getData(); %>! output event for s14 <% output.add(outAgroData, agroData); %>! add additional code <% public Distance distance(SatellitePosition onecoordinate, PCDPosition othercoordinate) { return new Distance((int)sqrt(((pow(((onecoordinate.x.doubleValue) - (othercoordinate.x.doubleValue)), 2)) + (pow(((onecoordinate.y.doubleValue) - (othercoordinate.y.doubleValue)), 2))))); } %>! internal event for s1 <% distanceMax = new Distance(new Integer(5)); %>! internal event for s4 <% if(distance(satellitePosition, pCDPosition) <= distanceMax.getValue()) { holdIn("s5",1.0); } else { passivateIn("s9"); } %>! internal event for s5 <% establish1 = new Establish(new Integer(1)); %>! when in s0 and receive Remove go to RemoveC! when in s1 and receive Remove go to RemoveC! when in s2 and receive Remove go to RemoveC! when in s3 and receive Remove go to RemoveC! when in s4 and receive Remove go to RemoveC! when in s5 and receive Remove go to RemoveC! when in s6 and receive Remove go to RemoveC! when in s7 and receive Remove go to RemoveC! when in s8 and receive Remove go to RemoveC! generates output on Remove with type AtomicModelImpl! hold in RemoveC for time 1! after RemoveC output Remove! from RemoveC go to RemoveC! output event for RemoveC <% output.add(outRemove,this); %>! add additional code <% public final boolean isMediator = true; public final String typeCons = "MediatorPCDtoSatellite"; %>! add library <% import java.io.FileWriter; import java.io.BufferedWriter; import java.io.File; %> ! add additional code <% private File getSrcModelsDirectory() { URI dirUri = null; File dir = null; try { dirUri = this.getClass().getResource(".").toURI(); dir = new File(dirUri); } catch (URISyntaxException e) { } while (dir != null && dir.getParentFile() != null) { if (dir.getName().equalsIgnoreCase("bin")) { return new File(dir.getParentFile(), "src/Models"); } dir = dir.getParentFile(); } return null; } public void writeCountersData() { String dirPath = getSrcModelsDirectory().getAbsolutePath() + "/result"; if(!new File(dirPath).exists()) { new File(dirPath).mkdir(); } try{ BufferedWriter writer = new BufferedWriter(new FileWriter(dirPath + "/Result.csv",true)); writer.write(getName() + ";"); writer.write("countCoordinatePCDReceived = " + Integer.toString(countCoordinatePCDReceived) + ";"); countCoordinatePCDReceived = 0; writer.write("countCoordinateSatelliteReceived = " + Integer.toString(countCoordinateSatelliteReceived) + ";"); countCoordinateSatelliteReceived = 0; writer.write("countMetDataReceived = " + Integer.toString(countMetDataReceived) + ";"); countMetDataReceived = 0; writer.write("countQaguaDataReceived = " + Integer.toString(countQaguaDataReceived) + ";"); countQaguaDataReceived = 0; writer.write("countHidroDataReceived = " + Integer.toString(countHidroDataReceived) + ";"); countHidroDataReceived = 0; writer.write("countAgroDataReceived = " + Integer.toString(countAgroDataReceived) + ";"); countAgroDataReceived = 0; writer.newLine(); writer.close(); }catch(Exception e) {} } %>!
SpaceSoSArchitecture.ses From the spaceSoSArchitecture perspective, SpaceSoSArchitecture is made of DataCenterCP, CommandAndControlSJC, GroundStation, Satellite, Mediator1, Mediator2, Mediator3, Mediator4, Pcd30869, Pcd30870, Pcd30871, Pcd30873, Pcd30879, Pcd30881, Pcd30882, Pcd30948, Pcd31000, Pcd31006, Pcd31111, Pcd31112, Pcd31113, Pcd31114, Pcd31115, Pcd31116, Pcd31117, Pcd31118, Pcd31119, Pcd31132, Pcd31709, Pcd31770, Pcd31804, Pcd31805, Pcd31807, Pcd31808, Pcd31809, Pcd31810, Pcd31811, Pcd31812, Pcd31814, Pcd31817, Pcd31819, Pcd31820, Pcd31821, Pcd31822, Pcd31824, Pcd31826, Pcd31827, Pcd31828, Pcd31829, Pcd31830, Pcd31834, Pcd31835, Pcd31836, Pcd31837, Pcd31839, Pcd31841, Pcd31842, Pcd31844, Pcd31845, Pcd31847, Pcd31848, Pcd31849, Pcd31851, Pcd31852, Pcd31853, Pcd31854, Pcd31856, Pcd31858, Pcd32534, Pcd32537, Pcd32539, Pcd32543, Pcd32484, Pcd30900, Pcd30901, Pcd30960, Pcd31020, Pcd31021, Pcd31023, Pcd31025, Pcd31029, Pcd31071, Pcd31074, Pcd31075, Pcd31077, Pcd31078, Pcd31079, Pcd31081, Pcd31082, Pcd31085, Pcd31086, Pcd31088, Pcd31089, Pcd31090, Pcd31091, Pcd31092, Pcd31093, Pcd31094, Pcd31095, Pcd31096, Pcd31097, Pcd31098, Pcd31099, Pcd31100, Pcd31101, Pcd31102, Pcd31764, Pcd31780, Pcd31782, Pcd31783, Pcd31784, Pcd31785, Pcd31786, Pcd30800, Pcd30885, Pcd30887, Pcd30888, Pcd30890, Pcd30975, Pcd31744, Pcd31745, Pcd31746, Pcd31801, MediatorPcd1, MediatorPcd2, MediatorPcd3, MediatorPcd4, MediatorPcd5, MediatorPcd6, MediatorPcd7, MediatorPcd8, MediatorPcd9, MediatorPcd10, MediatorPcd11, MediatorPcd12, MediatorPcd13, MediatorPcd14, MediatorPcd15, MediatorPcd16, MediatorPcd17, MediatorPcd18, MediatorPcd19, MediatorPcd20, MediatorPcd21, MediatorPcd22, MediatorPcd23, MediatorPcd24, MediatorPcd25, MediatorPcd26, MediatorPcd27, MediatorPcd28, MediatorPcd29, MediatorPcd30, MediatorPcd31, MediatorPcd32, MediatorPcd33, MediatorPcd34, MediatorPcd35, MediatorPcd36, MediatorPcd37, MediatorPcd38, MediatorPcd39, MediatorPcd40, MediatorPcd41, MediatorPcd42, MediatorPcd43, MediatorPcd44, MediatorPcd45, MediatorPcd46, MediatorPcd47, MediatorPcd48, MediatorPcd49, MediatorPcd50, MediatorPcd51, MediatorPcd52, MediatorPcd53, MediatorPcd54, MediatorPcd55, MediatorPcd56, MediatorPcd57, MediatorPcd58, MediatorPcd59, MediatorPcd60, MediatorPcd134, MediatorPcd135, MediatorPcd136, MediatorPcd137, MediatorPcd138, MediatorPcd139, MediatorPcd140, MediatorPcd141, MediatorPcd142, MediatorPcd143, MediatorPcd144, MediatorPcd145, MediatorPcd146, MediatorPcd147, MediatorPcd148, MediatorPcd149, MediatorPcd150, MediatorPcd151, MediatorPcd152, MediatorPcd153, MediatorPcd154, MediatorPcd155, MediatorPcd156, MediatorPcd157, MediatorPcd158, MediatorPcd159, MediatorPcd160, MediatorPcd161, MediatorPcd162, MediatorPcd163, MediatorPcd164, MediatorPcd165, MediatorPcd166, MediatorPcd167, MediatorPcd168, MediatorPcd169, MediatorPcd170, MediatorPcd171, MediatorPcd172, MediatorPcd173, MediatorPcd174, MediatorPcd175, MediatorPcd176, MediatorPcd214, MediatorPcd215, MediatorPcd216, MediatorPcd217, MediatorPcd218, MediatorPcd219, MediatorPcd220, MediatorPcd221, MediatorPcd222, MediatorPcd223 , StimuliGeneratorSatellite, StimuliGeneratorPcd30885, StimuliGeneratorPcd30890, StimuliGeneratorPcd30800, StimuliGeneratorPcd30888, StimuliGeneratorPcd31746, StimuliGeneratorPcd31801, StimuliGeneratorPcd31744, StimuliGeneratorPcd30887, StimuliGeneratorPcd30975, StimuliGeneratorPcd31745, StimuliGeneratorDataCenterCP, StimuliGeneratorPcd31819, StimuliGeneratorPcd31852, StimuliGeneratorPcd31853, StimuliGeneratorPcd30882, StimuliGeneratorPcd31851, StimuliGeneratorPcd30881, StimuliGeneratorPcd31132, StimuliGeneratorPcd31770, StimuliGeneratorPcd31817, StimuliGeneratorPcd31814, StimuliGeneratorPcd31858, StimuliGeneratorPcd31812, StimuliGeneratorPcd31856, StimuliGeneratorPcd31810, StimuliGeneratorPcd31854, StimuliGeneratorPcd31811, StimuliGeneratorPcd31829, StimuliGeneratorPcd31709, StimuliGeneratorPcd31820, StimuliGeneratorPcd31827, StimuliGeneratorPcd31828, StimuliGeneratorPcd31826, StimuliGeneratorPcd31824, StimuliGeneratorPcd31821, StimuliGeneratorPcd31822, StimuliGeneratorPcd31115, StimuliGeneratorPcd31830, StimuliGeneratorPcd31116, StimuliGeneratorPcd31113, StimuliGeneratorPcd31114, StimuliGeneratorPcd31111, StimuliGeneratorPcd31112, StimuliGeneratorPcd30948, StimuliGeneratorPcd31839, StimuliGeneratorPcd31836, StimuliGeneratorPcd30869, StimuliGeneratorPcd31837, StimuliGeneratorPcd31119, StimuliGeneratorPcd31834, StimuliGeneratorPcd31835, StimuliGeneratorPcd31117, StimuliGeneratorPcd31118, StimuliGeneratorPcd31809, StimuliGeneratorPcd31807, StimuliGeneratorPcd31808, StimuliGeneratorPcd30873, StimuliGeneratorPcd31841, StimuliGeneratorPcd31006, StimuliGeneratorPcd31842, StimuliGeneratorPcd30871, StimuliGeneratorPcd30870, StimuliGeneratorPcd31000, StimuliGeneratorPcd31805, StimuliGeneratorPcd31849, StimuliGeneratorPcd30879, StimuliGeneratorPcd31847, StimuliGeneratorPcd31804, StimuliGeneratorPcd31848, StimuliGeneratorPcd31845, StimuliGeneratorPcd31844, StimuliGeneratorPcd32534, StimuliGeneratorPcd32543, StimuliGeneratorPcd32539, StimuliGeneratorPcd32537, StimuliGeneratorPcd32484, StimuliGeneratorPcd31085, StimuliGeneratorPcd31020, StimuliGeneratorPcd31086, StimuliGeneratorPcd31081, StimuliGeneratorPcd31082, StimuliGeneratorPcd30960, StimuliGeneratorPcd31078, StimuliGeneratorPcd31079, StimuliGeneratorPcd31098, StimuliGeneratorPcd31077, StimuliGeneratorPcd31099, StimuliGeneratorPcd30901, StimuliGeneratorPcd30900, StimuliGeneratorPcd31074, StimuliGeneratorPcd31096, StimuliGeneratorPcd31075, StimuliGeneratorPcd31097, StimuliGeneratorPcd31094, StimuliGeneratorPcd31095, StimuliGeneratorPcd31092, StimuliGeneratorPcd31071, StimuliGeneratorPcd31093, StimuliGeneratorPcd31090, StimuliGeneratorPcd31091, StimuliGeneratorPcd31764, StimuliGeneratorPcd31786, StimuliGeneratorPcd31025, StimuliGeneratorPcd31102, StimuliGeneratorPcd31784, StimuliGeneratorPcd31785, StimuliGeneratorPcd31023, StimuliGeneratorPcd31089, StimuliGeneratorPcd31100, StimuliGeneratorPcd31782, StimuliGeneratorPcd31101, StimuliGeneratorPcd31783, StimuliGeneratorPcd31021, StimuliGeneratorPcd31780, StimuliGeneratorPcd31088, StimuliGeneratorPcd31029,and DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, DataCenterCP sends Request to Mediator1! From the spaceSoSArchitecture perspective, Mediator1 sends Request to CommandAndControlSJC! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Operation to Mediator2! From the spaceSoSArchitecture perspective, Mediator2 sends Operation to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telecommand to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telecommand to Satellite! From the spaceSoSArchitecture perspective, Satellite sends Telemetry to Mediator3! From the spaceSoSArchitecture perspective, Mediator3 sends Telemetry to GroundStation! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to Satellite! From the spaceSoSArchitecture perspective, Mediator3 sends EstablishConnectionGS to GroundStation! From the spaceSoSArchitecture perspective, GroundStation sends Telemetry to Mediator4! From the spaceSoSArchitecture perspective, Mediator4 sends Telemetry to DataCenterCP! From the spaceSoSArchitecture perspective, Pcd30869 sends CoordinatePCD to MediatorPcd1! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd1 sends EstablishConnection to Pcd30869! From the spaceSoSArchitecture perspective, Pcd30869 sends MetData to MediatorPcd1! From the spaceSoSArchitecture perspective, MediatorPcd1 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30870 sends CoordinatePCD to MediatorPcd2! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd2 sends EstablishConnection to Pcd30870! From the spaceSoSArchitecture perspective, Pcd30870 sends MetData to MediatorPcd2! From the spaceSoSArchitecture perspective, MediatorPcd2 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30871 sends CoordinatePCD to MediatorPcd3! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd3 sends EstablishConnection to Pcd30871! From the spaceSoSArchitecture perspective, Pcd30871 sends MetData to MediatorPcd3! From the spaceSoSArchitecture perspective, MediatorPcd3 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30873 sends CoordinatePCD to MediatorPcd4! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd4 sends EstablishConnection to Pcd30873! From the spaceSoSArchitecture perspective, Pcd30873 sends MetData to MediatorPcd4! From the spaceSoSArchitecture perspective, MediatorPcd4 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30879 sends CoordinatePCD to MediatorPcd5! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd5 sends EstablishConnection to Pcd30879! From the spaceSoSArchitecture perspective, Pcd30879 sends MetData to MediatorPcd5! From the spaceSoSArchitecture perspective, MediatorPcd5 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30881 sends CoordinatePCD to MediatorPcd6! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd6 sends EstablishConnection to Pcd30881! From the spaceSoSArchitecture perspective, Pcd30881 sends MetData to MediatorPcd6! From the spaceSoSArchitecture perspective, MediatorPcd6 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30882 sends CoordinatePCD to MediatorPcd7! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd7 sends EstablishConnection to Pcd30882! From the spaceSoSArchitecture perspective, Pcd30882 sends MetData to MediatorPcd7! From the spaceSoSArchitecture perspective, MediatorPcd7 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd30948 sends CoordinatePCD to MediatorPcd8! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd8 sends EstablishConnection to Pcd30948! From the spaceSoSArchitecture perspective, Pcd30948 sends MetData to MediatorPcd8! From the spaceSoSArchitecture perspective, MediatorPcd8 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31000 sends CoordinatePCD to MediatorPcd9! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd9 sends EstablishConnection to Pcd31000! From the spaceSoSArchitecture perspective, Pcd31000 sends MetData to MediatorPcd9! From the spaceSoSArchitecture perspective, MediatorPcd9 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31006 sends CoordinatePCD to MediatorPcd10! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd10 sends EstablishConnection to Pcd31006! From the spaceSoSArchitecture perspective, Pcd31006 sends MetData to MediatorPcd10! From the spaceSoSArchitecture perspective, MediatorPcd10 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31111 sends CoordinatePCD to MediatorPcd11! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd11 sends EstablishConnection to Pcd31111! From the spaceSoSArchitecture perspective, Pcd31111 sends MetData to MediatorPcd11! From the spaceSoSArchitecture perspective, MediatorPcd11 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31112 sends CoordinatePCD to MediatorPcd12! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd12 sends EstablishConnection to Pcd31112! From the spaceSoSArchitecture perspective, Pcd31112 sends MetData to MediatorPcd12! From the spaceSoSArchitecture perspective, MediatorPcd12 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31113 sends CoordinatePCD to MediatorPcd13! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd13 sends EstablishConnection to Pcd31113! From the spaceSoSArchitecture perspective, Pcd31113 sends MetData to MediatorPcd13! From the spaceSoSArchitecture perspective, MediatorPcd13 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31114 sends CoordinatePCD to MediatorPcd14! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd14 sends EstablishConnection to Pcd31114! From the spaceSoSArchitecture perspective, Pcd31114 sends MetData to MediatorPcd14! From the spaceSoSArchitecture perspective, MediatorPcd14 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31115 sends CoordinatePCD to MediatorPcd15! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd15 sends EstablishConnection to Pcd31115! From the spaceSoSArchitecture perspective, Pcd31115 sends MetData to MediatorPcd15! From the spaceSoSArchitecture perspective, MediatorPcd15 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31116 sends CoordinatePCD to MediatorPcd16! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd16 sends EstablishConnection to Pcd31116! From the spaceSoSArchitecture perspective, Pcd31116 sends MetData to MediatorPcd16! From the spaceSoSArchitecture perspective, MediatorPcd16 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31117 sends CoordinatePCD to MediatorPcd17! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd17 sends EstablishConnection to Pcd31117! From the spaceSoSArchitecture perspective, Pcd31117 sends MetData to MediatorPcd17! From the spaceSoSArchitecture perspective, MediatorPcd17 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31118 sends CoordinatePCD to MediatorPcd18! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd18 sends EstablishConnection to Pcd31118! From the spaceSoSArchitecture perspective, Pcd31118 sends MetData to MediatorPcd18! From the spaceSoSArchitecture perspective, MediatorPcd18 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31119 sends CoordinatePCD to MediatorPcd19! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd19 sends EstablishConnection to Pcd31119! From the spaceSoSArchitecture perspective, Pcd31119 sends MetData to MediatorPcd19! From the spaceSoSArchitecture perspective, MediatorPcd19 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31132 sends CoordinatePCD to MediatorPcd20! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd20 sends EstablishConnection to Pcd31132! From the spaceSoSArchitecture perspective, Pcd31132 sends MetData to MediatorPcd20! From the spaceSoSArchitecture perspective, MediatorPcd20 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31709 sends CoordinatePCD to MediatorPcd21! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd21 sends EstablishConnection to Pcd31709! From the spaceSoSArchitecture perspective, Pcd31709 sends MetData to MediatorPcd21! From the spaceSoSArchitecture perspective, MediatorPcd21 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31770 sends CoordinatePCD to MediatorPcd22! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd22 sends EstablishConnection to Pcd31770! From the spaceSoSArchitecture perspective, Pcd31770 sends MetData to MediatorPcd22! From the spaceSoSArchitecture perspective, MediatorPcd22 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31804 sends CoordinatePCD to MediatorPcd23! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd23 sends EstablishConnection to Pcd31804! From the spaceSoSArchitecture perspective, Pcd31804 sends MetData to MediatorPcd23! From the spaceSoSArchitecture perspective, MediatorPcd23 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31805 sends CoordinatePCD to MediatorPcd24! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd24 sends EstablishConnection to Pcd31805! From the spaceSoSArchitecture perspective, Pcd31805 sends MetData to MediatorPcd24! From the spaceSoSArchitecture perspective, MediatorPcd24 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31807 sends CoordinatePCD to MediatorPcd25! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd25 sends EstablishConnection to Pcd31807! From the spaceSoSArchitecture perspective, Pcd31807 sends MetData to MediatorPcd25! From the spaceSoSArchitecture perspective, MediatorPcd25 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31808 sends CoordinatePCD to MediatorPcd26! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd26 sends EstablishConnection to Pcd31808! From the spaceSoSArchitecture perspective, Pcd31808 sends MetData to MediatorPcd26! From the spaceSoSArchitecture perspective, MediatorPcd26 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31809 sends CoordinatePCD to MediatorPcd27! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd27 sends EstablishConnection to Pcd31809! From the spaceSoSArchitecture perspective, Pcd31809 sends MetData to MediatorPcd27! From the spaceSoSArchitecture perspective, MediatorPcd27 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31810 sends CoordinatePCD to MediatorPcd28! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd28 sends EstablishConnection to Pcd31810! From the spaceSoSArchitecture perspective, Pcd31810 sends MetData to MediatorPcd28! From the spaceSoSArchitecture perspective, MediatorPcd28 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31811 sends CoordinatePCD to MediatorPcd29! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd29 sends EstablishConnection to Pcd31811! From the spaceSoSArchitecture perspective, Pcd31811 sends MetData to MediatorPcd29! From the spaceSoSArchitecture perspective, MediatorPcd29 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31812 sends CoordinatePCD to MediatorPcd30! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd30 sends EstablishConnection to Pcd31812! From the spaceSoSArchitecture perspective, Pcd31812 sends MetData to MediatorPcd30! From the spaceSoSArchitecture perspective, MediatorPcd30 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31814 sends CoordinatePCD to MediatorPcd31! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd31 sends EstablishConnection to Pcd31814! From the spaceSoSArchitecture perspective, Pcd31814 sends MetData to MediatorPcd31! From the spaceSoSArchitecture perspective, MediatorPcd31 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31817 sends CoordinatePCD to MediatorPcd32! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd32 sends EstablishConnection to Pcd31817! From the spaceSoSArchitecture perspective, Pcd31817 sends MetData to MediatorPcd32! From the spaceSoSArchitecture perspective, MediatorPcd32 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31819 sends CoordinatePCD to MediatorPcd33! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd33 sends EstablishConnection to Pcd31819! From the spaceSoSArchitecture perspective, Pcd31819 sends MetData to MediatorPcd33! From the spaceSoSArchitecture perspective, MediatorPcd33 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31820 sends CoordinatePCD to MediatorPcd34! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd34 sends EstablishConnection to Pcd31820! From the spaceSoSArchitecture perspective, Pcd31820 sends MetData to MediatorPcd34! From the spaceSoSArchitecture perspective, MediatorPcd34 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31821 sends CoordinatePCD to MediatorPcd35! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd35 sends EstablishConnection to Pcd31821! From the spaceSoSArchitecture perspective, Pcd31821 sends MetData to MediatorPcd35! From the spaceSoSArchitecture perspective, MediatorPcd35 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31822 sends CoordinatePCD to MediatorPcd36! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd36 sends EstablishConnection to Pcd31822! From the spaceSoSArchitecture perspective, Pcd31822 sends MetData to MediatorPcd36! From the spaceSoSArchitecture perspective, MediatorPcd36 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31824 sends CoordinatePCD to MediatorPcd37! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd37 sends EstablishConnection to Pcd31824! From the spaceSoSArchitecture perspective, Pcd31824 sends MetData to MediatorPcd37! From the spaceSoSArchitecture perspective, MediatorPcd37 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31826 sends CoordinatePCD to MediatorPcd38! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd38 sends EstablishConnection to Pcd31826! From the spaceSoSArchitecture perspective, Pcd31826 sends MetData to MediatorPcd38! From the spaceSoSArchitecture perspective, MediatorPcd38 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31827 sends CoordinatePCD to MediatorPcd39! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd39 sends EstablishConnection to Pcd31827! From the spaceSoSArchitecture perspective, Pcd31827 sends MetData to MediatorPcd39! From the spaceSoSArchitecture perspective, MediatorPcd39 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31828 sends CoordinatePCD to MediatorPcd40! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd40 sends EstablishConnection to Pcd31828! From the spaceSoSArchitecture perspective, Pcd31828 sends MetData to MediatorPcd40! From the spaceSoSArchitecture perspective, MediatorPcd40 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31829 sends CoordinatePCD to MediatorPcd41! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd41 sends EstablishConnection to Pcd31829! From the spaceSoSArchitecture perspective, Pcd31829 sends MetData to MediatorPcd41! From the spaceSoSArchitecture perspective, MediatorPcd41 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31830 sends CoordinatePCD to MediatorPcd42! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd42 sends EstablishConnection to Pcd31830! From the spaceSoSArchitecture perspective, Pcd31830 sends MetData to MediatorPcd42! From the spaceSoSArchitecture perspective, MediatorPcd42 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31834 sends CoordinatePCD to MediatorPcd43! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd43 sends EstablishConnection to Pcd31834! From the spaceSoSArchitecture perspective, Pcd31834 sends MetData to MediatorPcd43! From the spaceSoSArchitecture perspective, MediatorPcd43 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31835 sends CoordinatePCD to MediatorPcd44! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd44 sends EstablishConnection to Pcd31835! From the spaceSoSArchitecture perspective, Pcd31835 sends MetData to MediatorPcd44! From the spaceSoSArchitecture perspective, MediatorPcd44 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31836 sends CoordinatePCD to MediatorPcd45! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd45 sends EstablishConnection to Pcd31836! From the spaceSoSArchitecture perspective, Pcd31836 sends MetData to MediatorPcd45! From the spaceSoSArchitecture perspective, MediatorPcd45 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31837 sends CoordinatePCD to MediatorPcd46! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd46 sends EstablishConnection to Pcd31837! From the spaceSoSArchitecture perspective, Pcd31837 sends MetData to MediatorPcd46! From the spaceSoSArchitecture perspective, MediatorPcd46 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31839 sends CoordinatePCD to MediatorPcd47! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd47 sends EstablishConnection to Pcd31839! From the spaceSoSArchitecture perspective, Pcd31839 sends MetData to MediatorPcd47! From the spaceSoSArchitecture perspective, MediatorPcd47 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31841 sends CoordinatePCD to MediatorPcd48! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd48 sends EstablishConnection to Pcd31841! From the spaceSoSArchitecture perspective, Pcd31841 sends MetData to MediatorPcd48! From the spaceSoSArchitecture perspective, MediatorPcd48 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31842 sends CoordinatePCD to MediatorPcd49! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd49 sends EstablishConnection to Pcd31842! From the spaceSoSArchitecture perspective, Pcd31842 sends MetData to MediatorPcd49! From the spaceSoSArchitecture perspective, MediatorPcd49 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31844 sends CoordinatePCD to MediatorPcd50! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd50 sends EstablishConnection to Pcd31844! From the spaceSoSArchitecture perspective, Pcd31844 sends MetData to MediatorPcd50! From the spaceSoSArchitecture perspective, MediatorPcd50 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31845 sends CoordinatePCD to MediatorPcd51! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd51 sends EstablishConnection to Pcd31845! From the spaceSoSArchitecture perspective, Pcd31845 sends MetData to MediatorPcd51! From the spaceSoSArchitecture perspective, MediatorPcd51 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31847 sends CoordinatePCD to MediatorPcd52! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd52 sends EstablishConnection to Pcd31847! From the spaceSoSArchitecture perspective, Pcd31847 sends MetData to MediatorPcd52! From the spaceSoSArchitecture perspective, MediatorPcd52 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31848 sends CoordinatePCD to MediatorPcd53! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd53 sends EstablishConnection to Pcd31848! From the spaceSoSArchitecture perspective, Pcd31848 sends MetData to MediatorPcd53! From the spaceSoSArchitecture perspective, MediatorPcd53 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31849 sends CoordinatePCD to MediatorPcd54! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd54 sends EstablishConnection to Pcd31849! From the spaceSoSArchitecture perspective, Pcd31849 sends MetData to MediatorPcd54! From the spaceSoSArchitecture perspective, MediatorPcd54 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31851 sends CoordinatePCD to MediatorPcd55! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd55 sends EstablishConnection to Pcd31851! From the spaceSoSArchitecture perspective, Pcd31851 sends MetData to MediatorPcd55! From the spaceSoSArchitecture perspective, MediatorPcd55 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31852 sends CoordinatePCD to MediatorPcd56! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd56 sends EstablishConnection to Pcd31852! From the spaceSoSArchitecture perspective, Pcd31852 sends MetData to MediatorPcd56! From the spaceSoSArchitecture perspective, MediatorPcd56 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31853 sends CoordinatePCD to MediatorPcd57! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd57 sends EstablishConnection to Pcd31853! From the spaceSoSArchitecture perspective, Pcd31853 sends MetData to MediatorPcd57! From the spaceSoSArchitecture perspective, MediatorPcd57 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31854 sends CoordinatePCD to MediatorPcd58! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd58 sends EstablishConnection to Pcd31854! From the spaceSoSArchitecture perspective, Pcd31854 sends MetData to MediatorPcd58! From the spaceSoSArchitecture perspective, MediatorPcd58 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31856 sends CoordinatePCD to MediatorPcd59! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd59 sends EstablishConnection to Pcd31856! From the spaceSoSArchitecture perspective, Pcd31856 sends MetData to MediatorPcd59! From the spaceSoSArchitecture perspective, MediatorPcd59 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd31858 sends CoordinatePCD to MediatorPcd60! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd60 sends EstablishConnection to Pcd31858! From the spaceSoSArchitecture perspective, Pcd31858 sends MetData to MediatorPcd60! From the spaceSoSArchitecture perspective, MediatorPcd60 sends MetData to Satellite! From the spaceSoSArchitecture perspective, Pcd32534 sends CoordinatePCD to MediatorPcd134! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd134 sends EstablishConnection to Pcd32534! From the spaceSoSArchitecture perspective, Pcd32534 sends QaguaData to MediatorPcd134! From the spaceSoSArchitecture perspective, MediatorPcd134 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32537 sends CoordinatePCD to MediatorPcd135! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd135 sends EstablishConnection to Pcd32537! From the spaceSoSArchitecture perspective, Pcd32537 sends QaguaData to MediatorPcd135! From the spaceSoSArchitecture perspective, MediatorPcd135 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd32539 sends CoordinatePCD to MediatorPcd136! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd136 sends EstablishConnection to Pcd32539! From the spaceSoSArchitecture perspective, Pcd32539 sends QaguaData to MediatorPcd136! From the spaceSoSArchitecture perspective, MediatorPcd136 sends QaguaData to Satellite! From the spaceSoSArchitecture perspective, Pcd30900 sends CoordinatePCD to MediatorPcd137! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd137 sends EstablishConnection to Pcd30900! From the spaceSoSArchitecture perspective, Pcd30900 sends HidroData to MediatorPcd137! From the spaceSoSArchitecture perspective, MediatorPcd137 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30901 sends CoordinatePCD to MediatorPcd138! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd138 sends EstablishConnection to Pcd30901! From the spaceSoSArchitecture perspective, Pcd30901 sends HidroData to MediatorPcd138! From the spaceSoSArchitecture perspective, MediatorPcd138 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30960 sends CoordinatePCD to MediatorPcd139! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd139 sends EstablishConnection to Pcd30960! From the spaceSoSArchitecture perspective, Pcd30960 sends HidroData to MediatorPcd139! From the spaceSoSArchitecture perspective, MediatorPcd139 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31020 sends CoordinatePCD to MediatorPcd140! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd140 sends EstablishConnection to Pcd31020! From the spaceSoSArchitecture perspective, Pcd31020 sends HidroData to MediatorPcd140! From the spaceSoSArchitecture perspective, MediatorPcd140 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31021 sends CoordinatePCD to MediatorPcd141! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd141 sends EstablishConnection to Pcd31021! From the spaceSoSArchitecture perspective, Pcd31021 sends HidroData to MediatorPcd141! From the spaceSoSArchitecture perspective, MediatorPcd141 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31023 sends CoordinatePCD to MediatorPcd142! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd142 sends EstablishConnection to Pcd31023! From the spaceSoSArchitecture perspective, Pcd31023 sends HidroData to MediatorPcd142! From the spaceSoSArchitecture perspective, MediatorPcd142 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31025 sends CoordinatePCD to MediatorPcd143! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd143 sends EstablishConnection to Pcd31025! From the spaceSoSArchitecture perspective, Pcd31025 sends HidroData to MediatorPcd143! From the spaceSoSArchitecture perspective, MediatorPcd143 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31029 sends CoordinatePCD to MediatorPcd144! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd144 sends EstablishConnection to Pcd31029! From the spaceSoSArchitecture perspective, Pcd31029 sends HidroData to MediatorPcd144! From the spaceSoSArchitecture perspective, MediatorPcd144 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31071 sends CoordinatePCD to MediatorPcd145! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd145 sends EstablishConnection to Pcd31071! From the spaceSoSArchitecture perspective, Pcd31071 sends HidroData to MediatorPcd145! From the spaceSoSArchitecture perspective, MediatorPcd145 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31074 sends CoordinatePCD to MediatorPcd146! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd146 sends EstablishConnection to Pcd31074! From the spaceSoSArchitecture perspective, Pcd31074 sends HidroData to MediatorPcd146! From the spaceSoSArchitecture perspective, MediatorPcd146 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31075 sends CoordinatePCD to MediatorPcd147! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd147 sends EstablishConnection to Pcd31075! From the spaceSoSArchitecture perspective, Pcd31075 sends HidroData to MediatorPcd147! From the spaceSoSArchitecture perspective, MediatorPcd147 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31077 sends CoordinatePCD to MediatorPcd148! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd148 sends EstablishConnection to Pcd31077! From the spaceSoSArchitecture perspective, Pcd31077 sends HidroData to MediatorPcd148! From the spaceSoSArchitecture perspective, MediatorPcd148 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31078 sends CoordinatePCD to MediatorPcd149! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd149 sends EstablishConnection to Pcd31078! From the spaceSoSArchitecture perspective, Pcd31078 sends HidroData to MediatorPcd149! From the spaceSoSArchitecture perspective, MediatorPcd149 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31079 sends CoordinatePCD to MediatorPcd150! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd150 sends EstablishConnection to Pcd31079! From the spaceSoSArchitecture perspective, Pcd31079 sends HidroData to MediatorPcd150! From the spaceSoSArchitecture perspective, MediatorPcd150 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31081 sends CoordinatePCD to MediatorPcd151! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd151 sends EstablishConnection to Pcd31081! From the spaceSoSArchitecture perspective, Pcd31081 sends HidroData to MediatorPcd151! From the spaceSoSArchitecture perspective, MediatorPcd151 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31082 sends CoordinatePCD to MediatorPcd152! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd152 sends EstablishConnection to Pcd31082! From the spaceSoSArchitecture perspective, Pcd31082 sends HidroData to MediatorPcd152! From the spaceSoSArchitecture perspective, MediatorPcd152 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31085 sends CoordinatePCD to MediatorPcd153! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd153 sends EstablishConnection to Pcd31085! From the spaceSoSArchitecture perspective, Pcd31085 sends HidroData to MediatorPcd153! From the spaceSoSArchitecture perspective, MediatorPcd153 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31086 sends CoordinatePCD to MediatorPcd154! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd154 sends EstablishConnection to Pcd31086! From the spaceSoSArchitecture perspective, Pcd31086 sends HidroData to MediatorPcd154! From the spaceSoSArchitecture perspective, MediatorPcd154 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31088 sends CoordinatePCD to MediatorPcd155! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd155 sends EstablishConnection to Pcd31088! From the spaceSoSArchitecture perspective, Pcd31088 sends HidroData to MediatorPcd155! From the spaceSoSArchitecture perspective, MediatorPcd155 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31089 sends CoordinatePCD to MediatorPcd156! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd156 sends EstablishConnection to Pcd31089! From the spaceSoSArchitecture perspective, Pcd31089 sends HidroData to MediatorPcd156! From the spaceSoSArchitecture perspective, MediatorPcd156 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31090 sends CoordinatePCD to MediatorPcd157! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd157 sends EstablishConnection to Pcd31090! From the spaceSoSArchitecture perspective, Pcd31090 sends HidroData to MediatorPcd157! From the spaceSoSArchitecture perspective, MediatorPcd157 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31091 sends CoordinatePCD to MediatorPcd158! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd158 sends EstablishConnection to Pcd31091! From the spaceSoSArchitecture perspective, Pcd31091 sends HidroData to MediatorPcd158! From the spaceSoSArchitecture perspective, MediatorPcd158 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31092 sends CoordinatePCD to MediatorPcd159! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd159 sends EstablishConnection to Pcd31092! From the spaceSoSArchitecture perspective, Pcd31092 sends HidroData to MediatorPcd159! From the spaceSoSArchitecture perspective, MediatorPcd159 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31093 sends CoordinatePCD to MediatorPcd160! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd160 sends EstablishConnection to Pcd31093! From the spaceSoSArchitecture perspective, Pcd31093 sends HidroData to MediatorPcd160! From the spaceSoSArchitecture perspective, MediatorPcd160 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31094 sends CoordinatePCD to MediatorPcd161! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd161 sends EstablishConnection to Pcd31094! From the spaceSoSArchitecture perspective, Pcd31094 sends HidroData to MediatorPcd161! From the spaceSoSArchitecture perspective, MediatorPcd161 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31095 sends CoordinatePCD to MediatorPcd162! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd162 sends EstablishConnection to Pcd31095! From the spaceSoSArchitecture perspective, Pcd31095 sends HidroData to MediatorPcd162! From the spaceSoSArchitecture perspective, MediatorPcd162 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31096 sends CoordinatePCD to MediatorPcd163! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd163 sends EstablishConnection to Pcd31096! From the spaceSoSArchitecture perspective, Pcd31096 sends HidroData to MediatorPcd163! From the spaceSoSArchitecture perspective, MediatorPcd163 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31097 sends CoordinatePCD to MediatorPcd164! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd164 sends EstablishConnection to Pcd31097! From the spaceSoSArchitecture perspective, Pcd31097 sends HidroData to MediatorPcd164! From the spaceSoSArchitecture perspective, MediatorPcd164 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31098 sends CoordinatePCD to MediatorPcd165! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd165 sends EstablishConnection to Pcd31098! From the spaceSoSArchitecture perspective, Pcd31098 sends HidroData to MediatorPcd165! From the spaceSoSArchitecture perspective, MediatorPcd165 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31099 sends CoordinatePCD to MediatorPcd166! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd166 sends EstablishConnection to Pcd31099! From the spaceSoSArchitecture perspective, Pcd31099 sends HidroData to MediatorPcd166! From the spaceSoSArchitecture perspective, MediatorPcd166 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31100 sends CoordinatePCD to MediatorPcd167! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd167 sends EstablishConnection to Pcd31100! From the spaceSoSArchitecture perspective, Pcd31100 sends HidroData to MediatorPcd167! From the spaceSoSArchitecture perspective, MediatorPcd167 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31101 sends CoordinatePCD to MediatorPcd168! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd168 sends EstablishConnection to Pcd31101! From the spaceSoSArchitecture perspective, Pcd31101 sends HidroData to MediatorPcd168! From the spaceSoSArchitecture perspective, MediatorPcd168 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31102 sends CoordinatePCD to MediatorPcd169! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd169 sends EstablishConnection to Pcd31102! From the spaceSoSArchitecture perspective, Pcd31102 sends HidroData to MediatorPcd169! From the spaceSoSArchitecture perspective, MediatorPcd169 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31764 sends CoordinatePCD to MediatorPcd170! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd170 sends EstablishConnection to Pcd31764! From the spaceSoSArchitecture perspective, Pcd31764 sends HidroData to MediatorPcd170! From the spaceSoSArchitecture perspective, MediatorPcd170 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31780 sends CoordinatePCD to MediatorPcd171! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd171 sends EstablishConnection to Pcd31780! From the spaceSoSArchitecture perspective, Pcd31780 sends HidroData to MediatorPcd171! From the spaceSoSArchitecture perspective, MediatorPcd171 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31782 sends CoordinatePCD to MediatorPcd172! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd172 sends EstablishConnection to Pcd31782! From the spaceSoSArchitecture perspective, Pcd31782 sends HidroData to MediatorPcd172! From the spaceSoSArchitecture perspective, MediatorPcd172 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31783 sends CoordinatePCD to MediatorPcd173! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd173 sends EstablishConnection to Pcd31783! From the spaceSoSArchitecture perspective, Pcd31783 sends HidroData to MediatorPcd173! From the spaceSoSArchitecture perspective, MediatorPcd173 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31784 sends CoordinatePCD to MediatorPcd174! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd174 sends EstablishConnection to Pcd31784! From the spaceSoSArchitecture perspective, Pcd31784 sends HidroData to MediatorPcd174! From the spaceSoSArchitecture perspective, MediatorPcd174 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31785 sends CoordinatePCD to MediatorPcd175! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd175 sends EstablishConnection to Pcd31785! From the spaceSoSArchitecture perspective, Pcd31785 sends HidroData to MediatorPcd175! From the spaceSoSArchitecture perspective, MediatorPcd175 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31786 sends CoordinatePCD to MediatorPcd176! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd176 sends EstablishConnection to Pcd31786! From the spaceSoSArchitecture perspective, Pcd31786 sends HidroData to MediatorPcd176! From the spaceSoSArchitecture perspective, MediatorPcd176 sends HidroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30800 sends CoordinatePCD to MediatorPcd214! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd214 sends EstablishConnection to Pcd30800! From the spaceSoSArchitecture perspective, Pcd30800 sends AgroData to MediatorPcd214! From the spaceSoSArchitecture perspective, MediatorPcd214 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30885 sends CoordinatePCD to MediatorPcd215! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd215 sends EstablishConnection to Pcd30885! From the spaceSoSArchitecture perspective, Pcd30885 sends AgroData to MediatorPcd215! From the spaceSoSArchitecture perspective, MediatorPcd215 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30887 sends CoordinatePCD to MediatorPcd216! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd216 sends EstablishConnection to Pcd30887! From the spaceSoSArchitecture perspective, Pcd30887 sends AgroData to MediatorPcd216! From the spaceSoSArchitecture perspective, MediatorPcd216 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30888 sends CoordinatePCD to MediatorPcd217! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd217 sends EstablishConnection to Pcd30888! From the spaceSoSArchitecture perspective, Pcd30888 sends AgroData to MediatorPcd217! From the spaceSoSArchitecture perspective, MediatorPcd217 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30890 sends CoordinatePCD to MediatorPcd218! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd218 sends EstablishConnection to Pcd30890! From the spaceSoSArchitecture perspective, Pcd30890 sends AgroData to MediatorPcd218! From the spaceSoSArchitecture perspective, MediatorPcd218 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd30975 sends CoordinatePCD to MediatorPcd219! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd219 sends EstablishConnection to Pcd30975! From the spaceSoSArchitecture perspective, Pcd30975 sends AgroData to MediatorPcd219! From the spaceSoSArchitecture perspective, MediatorPcd219 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31744 sends CoordinatePCD to MediatorPcd220! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd220 sends EstablishConnection to Pcd31744! From the spaceSoSArchitecture perspective, Pcd31744 sends AgroData to MediatorPcd220! From the spaceSoSArchitecture perspective, MediatorPcd220 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31745 sends CoordinatePCD to MediatorPcd221! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd221 sends EstablishConnection to Pcd31745! From the spaceSoSArchitecture perspective, Pcd31745 sends AgroData to MediatorPcd221! From the spaceSoSArchitecture perspective, MediatorPcd221 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31746 sends CoordinatePCD to MediatorPcd222! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd222 sends EstablishConnection to Pcd31746! From the spaceSoSArchitecture perspective, Pcd31746 sends AgroData to MediatorPcd222! From the spaceSoSArchitecture perspective, MediatorPcd222 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, Pcd31801 sends CoordinatePCD to MediatorPcd223! From the spaceSoSArchitecture perspective, Satellite sends CoordinateSatellite to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Satellite! From the spaceSoSArchitecture perspective, MediatorPcd223 sends EstablishConnection to Pcd31801! From the spaceSoSArchitecture perspective, Pcd31801 sends AgroData to MediatorPcd223! From the spaceSoSArchitecture perspective, MediatorPcd223 sends AgroData to Satellite! From the spaceSoSArchitecture perspective, DataCenterCP sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, CommandAndControlSJC sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, GroundStation sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Satellite sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30869 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30870 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30871 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30873 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30879 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30881 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30882 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30948 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31000 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31006 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31111 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31112 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31113 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31114 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31115 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31116 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31117 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31118 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31119 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31132 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31709 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31770 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31804 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31805 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31807 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31808 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31809 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31810 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31811 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31812 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31814 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31817 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31819 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31820 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31821 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31822 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31824 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31826 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31827 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31828 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31829 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31830 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31834 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31835 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31836 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31837 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31839 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31841 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31842 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31844 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31845 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31847 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31848 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31849 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31851 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31852 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31853 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31854 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31856 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31858 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32534 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32537 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32539 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32543 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd32484 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30900 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30901 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30960 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31020 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31021 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31023 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31025 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31029 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31071 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31074 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31075 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31077 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31078 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31079 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31081 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31082 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31085 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31086 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31088 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31089 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31090 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31091 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31092 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31093 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31094 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31095 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31096 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31097 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31098 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31099 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31100 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31101 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31102 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31764 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31780 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31782 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31783 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31784 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31785 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31786 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30800 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30885 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30887 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30888 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30890 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd30975 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31744 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31745 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31746 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, Pcd31801 sends Remove to DRCspaceSoSArchitecture! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Temperature to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Image to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Power to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Orbit to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends CoordinateSatellite to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorSatellite sends Height to Satellite! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends AgroData to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends CoordinatePCD to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30885 sends PowerLevel to Pcd30885! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends AgroData to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends CoordinatePCD to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30890 sends PowerLevel to Pcd30890! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends AgroData to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends CoordinatePCD to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30800 sends PowerLevel to Pcd30800! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends AgroData to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends CoordinatePCD to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30888 sends PowerLevel to Pcd30888! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends AgroData to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends CoordinatePCD to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31746 sends PowerLevel to Pcd31746! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends AgroData to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends CoordinatePCD to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31801 sends PowerLevel to Pcd31801! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends AgroData to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends CoordinatePCD to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31744 sends PowerLevel to Pcd31744! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends AgroData to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends CoordinatePCD to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30887 sends PowerLevel to Pcd30887! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends AgroData to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends CoordinatePCD to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30975 sends PowerLevel to Pcd30975! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends AgroData to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends CoordinatePCD to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31745 sends PowerLevel to Pcd31745! From the spaceSoSArchitecture perspective, StimuliGeneratorDataCenterCP sends Coordinate to DataCenterCP! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends MetData to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends CoordinatePCD to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31819 sends PowerLevel to Pcd31819! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends MetData to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends CoordinatePCD to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31852 sends PowerLevel to Pcd31852! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends MetData to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends CoordinatePCD to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31853 sends PowerLevel to Pcd31853! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends MetData to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends CoordinatePCD to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30882 sends PowerLevel to Pcd30882! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends MetData to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends CoordinatePCD to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31851 sends PowerLevel to Pcd31851! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends MetData to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends CoordinatePCD to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30881 sends PowerLevel to Pcd30881! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends MetData to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends CoordinatePCD to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31132 sends PowerLevel to Pcd31132! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends MetData to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends CoordinatePCD to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31770 sends PowerLevel to Pcd31770! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends MetData to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends CoordinatePCD to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31817 sends PowerLevel to Pcd31817! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends MetData to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends CoordinatePCD to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31814 sends PowerLevel to Pcd31814! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends MetData to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends CoordinatePCD to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31858 sends PowerLevel to Pcd31858! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends MetData to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends CoordinatePCD to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31812 sends PowerLevel to Pcd31812! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends MetData to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends CoordinatePCD to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31856 sends PowerLevel to Pcd31856! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends MetData to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends CoordinatePCD to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31810 sends PowerLevel to Pcd31810! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends MetData to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends CoordinatePCD to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31854 sends PowerLevel to Pcd31854! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends MetData to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends CoordinatePCD to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31811 sends PowerLevel to Pcd31811! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends MetData to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends CoordinatePCD to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31829 sends PowerLevel to Pcd31829! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends MetData to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends CoordinatePCD to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31709 sends PowerLevel to Pcd31709! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends MetData to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends CoordinatePCD to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31820 sends PowerLevel to Pcd31820! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends MetData to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends CoordinatePCD to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31827 sends PowerLevel to Pcd31827! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends MetData to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends CoordinatePCD to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31828 sends PowerLevel to Pcd31828! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends MetData to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends CoordinatePCD to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31826 sends PowerLevel to Pcd31826! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends MetData to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends CoordinatePCD to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31824 sends PowerLevel to Pcd31824! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends MetData to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends CoordinatePCD to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31821 sends PowerLevel to Pcd31821! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends MetData to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends CoordinatePCD to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31822 sends PowerLevel to Pcd31822! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends MetData to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends CoordinatePCD to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31115 sends PowerLevel to Pcd31115! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends MetData to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends CoordinatePCD to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31830 sends PowerLevel to Pcd31830! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends MetData to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends CoordinatePCD to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31116 sends PowerLevel to Pcd31116! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends MetData to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends CoordinatePCD to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31113 sends PowerLevel to Pcd31113! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends MetData to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends CoordinatePCD to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31114 sends PowerLevel to Pcd31114! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends MetData to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends CoordinatePCD to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31111 sends PowerLevel to Pcd31111! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends MetData to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends CoordinatePCD to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31112 sends PowerLevel to Pcd31112! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends MetData to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends CoordinatePCD to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30948 sends PowerLevel to Pcd30948! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends MetData to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends CoordinatePCD to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31839 sends PowerLevel to Pcd31839! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends MetData to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends CoordinatePCD to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31836 sends PowerLevel to Pcd31836! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends MetData to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends CoordinatePCD to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30869 sends PowerLevel to Pcd30869! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends MetData to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends CoordinatePCD to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31837 sends PowerLevel to Pcd31837! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends MetData to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends CoordinatePCD to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31119 sends PowerLevel to Pcd31119! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends MetData to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends CoordinatePCD to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31834 sends PowerLevel to Pcd31834! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends MetData to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends CoordinatePCD to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31835 sends PowerLevel to Pcd31835! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends MetData to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends CoordinatePCD to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31117 sends PowerLevel to Pcd31117! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends MetData to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends CoordinatePCD to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31118 sends PowerLevel to Pcd31118! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends MetData to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends CoordinatePCD to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31809 sends PowerLevel to Pcd31809! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends MetData to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends CoordinatePCD to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31807 sends PowerLevel to Pcd31807! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends MetData to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends CoordinatePCD to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31808 sends PowerLevel to Pcd31808! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends MetData to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends CoordinatePCD to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30873 sends PowerLevel to Pcd30873! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends MetData to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends CoordinatePCD to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31841 sends PowerLevel to Pcd31841! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends MetData to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends CoordinatePCD to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31006 sends PowerLevel to Pcd31006! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends MetData to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends CoordinatePCD to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31842 sends PowerLevel to Pcd31842! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends MetData to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends CoordinatePCD to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30871 sends PowerLevel to Pcd30871! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends MetData to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends CoordinatePCD to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30870 sends PowerLevel to Pcd30870! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends MetData to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends CoordinatePCD to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31000 sends PowerLevel to Pcd31000! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends MetData to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends CoordinatePCD to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31805 sends PowerLevel to Pcd31805! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends MetData to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends CoordinatePCD to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31849 sends PowerLevel to Pcd31849! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends MetData to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends CoordinatePCD to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30879 sends PowerLevel to Pcd30879! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends MetData to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends CoordinatePCD to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31847 sends PowerLevel to Pcd31847! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends MetData to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends CoordinatePCD to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31804 sends PowerLevel to Pcd31804! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends MetData to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends CoordinatePCD to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31848 sends PowerLevel to Pcd31848! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends MetData to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends CoordinatePCD to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31845 sends PowerLevel to Pcd31845! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends MetData to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends CoordinatePCD to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31844 sends PowerLevel to Pcd31844! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends CoordinatePCD to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends QaguaData to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32534 sends PowerLevel to Pcd32534! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends CoordinatePCD to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends QaguaData to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32543 sends PowerLevel to Pcd32543! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends CoordinatePCD to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends QaguaData to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32539 sends PowerLevel to Pcd32539! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends CoordinatePCD to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends QaguaData to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32537 sends PowerLevel to Pcd32537! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends CoordinatePCD to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends QaguaData to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd32484 sends PowerLevel to Pcd32484! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends CoordinatePCD to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends HidroData to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31085 sends PowerLevel to Pcd31085! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends CoordinatePCD to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends HidroData to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31020 sends PowerLevel to Pcd31020! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends CoordinatePCD to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends HidroData to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31086 sends PowerLevel to Pcd31086! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends CoordinatePCD to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends HidroData to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31081 sends PowerLevel to Pcd31081! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends CoordinatePCD to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends HidroData to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31082 sends PowerLevel to Pcd31082! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends CoordinatePCD to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends HidroData to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30960 sends PowerLevel to Pcd30960! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends CoordinatePCD to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends HidroData to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31078 sends PowerLevel to Pcd31078! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends CoordinatePCD to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends HidroData to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31079 sends PowerLevel to Pcd31079! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends CoordinatePCD to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends HidroData to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31098 sends PowerLevel to Pcd31098! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends CoordinatePCD to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends HidroData to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31077 sends PowerLevel to Pcd31077! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends CoordinatePCD to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends HidroData to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31099 sends PowerLevel to Pcd31099! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends CoordinatePCD to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends HidroData to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30901 sends PowerLevel to Pcd30901! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends CoordinatePCD to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends HidroData to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd30900 sends PowerLevel to Pcd30900! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends CoordinatePCD to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends HidroData to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31074 sends PowerLevel to Pcd31074! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends CoordinatePCD to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends HidroData to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31096 sends PowerLevel to Pcd31096! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends CoordinatePCD to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends HidroData to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31075 sends PowerLevel to Pcd31075! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends CoordinatePCD to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends HidroData to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31097 sends PowerLevel to Pcd31097! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends CoordinatePCD to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends HidroData to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31094 sends PowerLevel to Pcd31094! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends CoordinatePCD to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends HidroData to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31095 sends PowerLevel to Pcd31095! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends CoordinatePCD to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends HidroData to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31092 sends PowerLevel to Pcd31092! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends CoordinatePCD to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends HidroData to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31071 sends PowerLevel to Pcd31071! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends CoordinatePCD to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends HidroData to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31093 sends PowerLevel to Pcd31093! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends CoordinatePCD to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends HidroData to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31090 sends PowerLevel to Pcd31090! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends CoordinatePCD to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends HidroData to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31091 sends PowerLevel to Pcd31091! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends CoordinatePCD to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends HidroData to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31764 sends PowerLevel to Pcd31764! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends CoordinatePCD to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends HidroData to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31786 sends PowerLevel to Pcd31786! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends CoordinatePCD to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends HidroData to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31025 sends PowerLevel to Pcd31025! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends CoordinatePCD to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends HidroData to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31102 sends PowerLevel to Pcd31102! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends CoordinatePCD to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends HidroData to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31784 sends PowerLevel to Pcd31784! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends CoordinatePCD to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends HidroData to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31785 sends PowerLevel to Pcd31785! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends CoordinatePCD to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends HidroData to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31023 sends PowerLevel to Pcd31023! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends CoordinatePCD to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends HidroData to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31089 sends PowerLevel to Pcd31089! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends CoordinatePCD to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends HidroData to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31100 sends PowerLevel to Pcd31100! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends CoordinatePCD to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends HidroData to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31782 sends PowerLevel to Pcd31782! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends CoordinatePCD to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends HidroData to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31101 sends PowerLevel to Pcd31101! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends CoordinatePCD to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends HidroData to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31783 sends PowerLevel to Pcd31783! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends CoordinatePCD to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends HidroData to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31021 sends PowerLevel to Pcd31021! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends CoordinatePCD to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends HidroData to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31780 sends PowerLevel to Pcd31780! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends CoordinatePCD to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends HidroData to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31088 sends PowerLevel to Pcd31088! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends CoordinatePCD to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends HidroData to Pcd31029! From the spaceSoSArchitecture perspective, StimuliGeneratorPcd31029 sends PowerLevel to Pcd31029!